16 lines
304 B
Go
16 lines
304 B
Go
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
|
|
}
|