// // cfg.go // Copyright (C) 2024 veypi // 2025-03-04 16:08:06 // Distributed under terms of the MIT license. // package cfg type config struct { Host string `json:"host"` Port int `json:"port"` LoggerPath string `json:"logger_path,omitempty"` LoggerLevel string `json:"logger_level,omitempty"` DSN string `json:"dsn"` DB string `json:"db"` ID string `json:"id"` Key string `json:"key"` } var Config = &config{}