package model import ( "github.com/tech/sendico/pkg/db/storable" "github.com/tech/sendico/pkg/mservice" ) type Automation struct { storable.Base `bson:",inline" json:",inline"` Describable `bson:",inline" json:",inline"` } func (*Automation) Collection() string { return mservice.Automations }