mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-29 23:43:43 -04:00
16 lines
246 B
Go
16 lines
246 B
Go
package httpserver
|
|
|
|
type Config struct {
|
|
LocalAddress string
|
|
GinMode string
|
|
Options []string
|
|
}
|
|
|
|
func NewDefaultConfig() Config {
|
|
return Config{
|
|
LocalAddress: ":3333",
|
|
GinMode: "release",
|
|
Options: []string{"*"},
|
|
}
|
|
}
|