mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 01:24:02 +03:00
FILE / ScuroNeko/mtg
mtglib/internal/relay/init.go
Исходный файл и его история в репозитории.
15 lines
278 B
Go
15 lines
278 B
Go
package relay
|
|
|
|
import "time"
|
|
|
|
const (
|
|
ConnectionTimeToLiveMin = 2 * time.Minute
|
|
ConnectionTimeToLiveMax = 10 * time.Minute
|
|
TimeoutMin = 20 * time.Second
|
|
TimeoutMax = time.Minute
|
|
)
|
|
|
|
type Logger interface {
|
|
Printf(msg string, args ...interface{})
|
|
}
|