10 lines
130 B
Go
10 lines
130 B
Go
package ezcoo
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
const pollCmd = "EZG OUT0 VS"
|
|
|
|
var reOutVS = regexp.MustCompile(`(?i)OUT(\d)\s+VS\s+IN(\d)`)
|