I have model like:
type Service struct {
Id uint64
Name string
Secret string
Disabled bool
}
And want to use annotations like form
, valid
and orm
. And I can't find how I should declare these annotations. Should it be one or many? If many, what separator should I use?