9 lines
97 B
Go
9 lines
97 B
Go
|
package protocol
|
||
|
|
||
|
type Protocol int
|
||
|
|
||
|
const (
|
||
|
Generic Protocol = iota
|
||
|
TMT88IV Protocol = iota
|
||
|
)
|