14 lines
206 B
Go
14 lines
206 B
Go
package models
|
|
|
|
type Subscriptions map[string]*Subscription
|
|
|
|
type Subscription struct {
|
|
OnCreate bool
|
|
OnDelete bool
|
|
OnChange bool
|
|
}
|
|
|
|
func InitSubscribtion() Subscriptions {
|
|
return make(Subscriptions)
|
|
}
|