feat: add product against categories #34

Merged
realaravinth merged 10 commits from add-product into master 2024-07-15 18:21:13 +05:30
Showing only changes of commit 13e913e661 - Show all commits

View file

@ -10,7 +10,10 @@ pub type InventoryDBResult<V> = Result<V, InventoryDBError>;
#[derive(Debug, Display, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord)]
pub enum InventoryDBError {
DuplicateCategoryName,
DuplicateCategoryID,
DuplicateStoreName,
DuplicateStoreID,
DuplicateProductName,
DuplicateProductID,
InternalError,
}