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