11 lines
155 B
Go
11 lines
155 B
Go
package sonic
|
|
|
|
type Action string
|
|
|
|
const (
|
|
Consolidate Action = "consolidate"
|
|
)
|
|
|
|
func IsActionValid(action Action) bool {
|
|
return action == Consolidate
|
|
}
|