Files
http-server/config/config.go
2026-02-15 18:49:22 +01:00

17 lines
264 B
Go

package config
type Config struct {
NetInterface string
Htdocs string
Profile bool
}
func GetConfig() *Config {
//TODO: Load config from file
return &Config{
NetInterface: "127.0.0.1:80",
Htdocs: "./htdocs",
Profile: false,
}
}