3
0
Files
corteza/messaging/websocket/config.go
Denis Arh 243052402d More flexible "messaging", move to Corteza
- more control over starting procedure, cli commands...
 - fix package paths
 - renaming symbols, comments, strings from Crust to Corteza
2019-05-24 12:42:04 +02:00

14 lines
152 B
Go

package websocket
import (
"time"
)
type (
Config struct {
Timeout time.Duration
PingTimeout time.Duration
PingPeriod time.Duration
}
)