add readme, now the driver is ok!
This commit is contained in:
parent
7dd0faf24b
commit
95120c77b1
6 changed files with 145 additions and 29 deletions
11
sonic/actions.go
Normal file
11
sonic/actions.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package sonic
|
||||
|
||||
type Action string
|
||||
|
||||
const (
|
||||
Consolidate Action = "consolidate"
|
||||
)
|
||||
|
||||
func IsActionValid(action Action) bool {
|
||||
return action == Consolidate
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue