15 lines
213 B
Go
15 lines
213 B
Go
|
package plans
|
||
|
|
||
|
type Action rune
|
||
|
|
||
|
const (
|
||
|
NoOp Action = 0
|
||
|
Create Action = '+'
|
||
|
Read Action = '←'
|
||
|
Update Action = '~'
|
||
|
Replace Action = '±'
|
||
|
Delete Action = '-'
|
||
|
)
|
||
|
|
||
|
//go:generate stringer -type Action
|