]> Sergey Matveev's repositories - vors.git/blob - internal/var.go
Noising
[vors.git] / internal / var.go
1 package internal
2
3 import "time"
4
5 const (
6         TagLen = 8
7
8         CmdPing = "PING"
9         CmdPong = "PONG"
10         CmdAdd  = "ADD"
11         CmdDel  = "DEL"
12 )
13
14 var (
15         PingTime      = 10 * time.Second
16         ScreenRefresh = 200 * time.Millisecond
17 )