first version

This commit is contained in:
2021-08-01 00:03:25 +03:00
parent 231ca061ac
commit 5e38debcfd
13 changed files with 854 additions and 0 deletions

18
internal/common/common.go Normal file
View File

@ -0,0 +1,18 @@
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
}