- more control over starting procedure, cli commands... - fix package paths - renaming symbols, comments, strings from Crust to Corteza
14 lines
152 B
Go
14 lines
152 B
Go
package websocket
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type (
|
|
Config struct {
|
|
Timeout time.Duration
|
|
PingTimeout time.Duration
|
|
PingPeriod time.Duration
|
|
}
|
|
)
|