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