util-go/channel/action.go

14 lines
161 B
Go
Raw Normal View History

2018-04-03 08:37:26 +00:00
package channel
type ActionType int
const (
ActionTypeCreate ActionType = iota
ActionTypeDelete
ActionTypeUpdate
)
type Action struct {
Type ActionType
}