19 lines
221 B
Go
Raw Normal View History

2021-08-01 00:03:25 +03:00
package common
type Worker interface {
Do()
Stop()
}
type RawEvent struct {
LineNum byte
Text string
}
type Event struct {
LineNum byte
ConnectIP string
PlayerStartIP string
PlayerEndIP string
}