Files
bitmagnet/internal/httpserver/config.go
T
2025-07-31 08:05:37 +00:00

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{"*"},
}
}