KF2-AntiDDoS/internal/common/common.go

19 lines
221 B
Go
Raw Permalink Normal View History

2021-07-31 21:03:25 +00: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
}