diff options
Diffstat (limited to 'item/item.go')
| -rw-r--r-- | item/item.go | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/item/item.go b/item/item.go index 4da9c78..839cbe0 100644 --- a/item/item.go +++ b/item/item.go @@ -20,6 +20,7 @@ package item  import (  	"gorm.io/gorm"  	d "vidhukant.com/openbills/db" +	"vidhukant.com/openbills/user"  )  var db *gorm.DB @@ -35,6 +36,8 @@ type Brand struct {  }  type Item struct { +	UserID             uint      `json:"-"` +	User               user.User `json:"-"`  	BrandID            uint  	Brand              Brand  	UnitOfMeasure      string // TODO: probably has to be a custom type  |