Files
mayhem-party/src/device/input/parse/parser_test.go
2023-03-26 08:37:13 -06:00

13 lines
236 B
Go

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