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