Files
old-backend/models/buyer.go

19 lines
274 B
Go
Raw Normal View History

2023-09-27 08:04:50 +02:00
package models
import "github.com/jinzhu/gorm"
type Buyer struct {
gorm.Model
Name string
}
func (Buyer) Update() (bool, error) {
return false, nil
}
func (Buyer) Create() (bool, error) {
return false, nil
}
func (Buyer) Delete() (bool, error) {
return false, nil
}