feat: optimize mime type

This commit is contained in:
2026-02-15 18:49:22 +01:00
parent f85afce949
commit df0bf9bed7
6 changed files with 103 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ package config
type Config struct {
NetInterface string
Htdocs string
Profile bool
}
func GetConfig() *Config {
@@ -10,5 +11,6 @@ func GetConfig() *Config {
return &Config{
NetInterface: "127.0.0.1:80",
Htdocs: "./htdocs",
Profile: false,
}
}