split button and parse packages

This commit is contained in:
bel
2023-03-25 22:52:09 -06:00
parent bd5654128e
commit 373d8be1a0
13 changed files with 59 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
package parse_test
import (
"mayhem-party/src/device/input/parse"
"testing"
)
func TestParser(t *testing.T) {
var _ parse.Parser = parse.Plaintext{}
var _ parse.Parser = &parse.V01{}
}