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