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

15 lines
222 B
Go

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