Upstream sync

This commit is contained in:
Senad Uka
2023-09-18 12:27:40 +02:00
parent 9750aa2c37
commit 1f30f85787
30 changed files with 309 additions and 150 deletions

View File

@@ -4,19 +4,19 @@ import "github.com/jinzhu/gorm"
type User struct {
gorm.Model
Username string
Password string
Email string
Avatar string
CompanyID uint
Username string
Password string
Email string
Avatar string
CompanyID uint
}
func (User)Update() (bool, error) {
func (User) Update() (bool, error) {
return false, nil
}
func (User)Create() (bool, error) {
func (User) Create() (bool, error) {
return false, nil
}
func (User)Delete() (bool, error) {
func (User) Delete() (bool, error) {
return false, nil
}