11 lines
184 B
Go
11 lines
184 B
Go
package customer
|
|
|
|
import (
|
|
"wagfarm-api/database"
|
|
"wagfarm-api/taxonomy/base"
|
|
)
|
|
|
|
type Customer struct{ base.Taxonomy }
|
|
|
|
func RegisterModels() { database.RegisterModel(&Customer{}) }
|