mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-24 21:21:03 -04:00
16 lines
213 B
Go
16 lines
213 B
Go
package server
|
|
|
|
import "time"
|
|
|
|
type Config struct {
|
|
Port uint16
|
|
QueryTimeout time.Duration
|
|
}
|
|
|
|
func NewDefaultConfig() Config {
|
|
return Config{
|
|
Port: 3334,
|
|
QueryTimeout: time.Second * 4,
|
|
}
|
|
}
|