add readme, now the driver is ok!

This commit is contained in:
alexisvisco 2019-03-25 20:34:14 +01:00
parent 7dd0faf24b
commit 95120c77b1
6 changed files with 145 additions and 29 deletions

11
sonic/actions.go Normal file
View file

@ -0,0 +1,11 @@
package sonic
type Action string
const (
Consolidate Action = "consolidate"
)
func IsActionValid(action Action) bool {
return action == Consolidate
}