14 lines
161 B
Go
14 lines
161 B
Go
|
package channel
|
||
|
|
||
|
type ActionType int
|
||
|
|
||
|
const (
|
||
|
ActionTypeCreate ActionType = iota
|
||
|
ActionTypeDelete
|
||
|
ActionTypeUpdate
|
||
|
)
|
||
|
|
||
|
type Action struct {
|
||
|
Type ActionType
|
||
|
}
|