remove comment

This commit is contained in:
kingecg 2023-12-08 22:35:31 +08:00
parent 61258c5535
commit 1ec5e5455a
1 changed files with 0 additions and 34 deletions

34
main.go
View File

@ -7,40 +7,6 @@ import (
)
func main() {
// logger.Configure(logger.LoggersConfig{
// Categories: map[string]logger.LogConfig{
// "default": {
// Level: "debug",
// Appenders: []string{
// "console",
// },
// },
// "fat": {
// Level: "debug",
// Appenders: []string{
// "console",
// "file",
// },
// },
// },
// Appenders: map[string]logger.LogAppenderConfig{
// "console": {
// Type: "console",
// },
// "file": {
// Type: "file",
// Options: map[string]interface{}{
// "file": "./log/fat.log",
// },
// },
// },
// })
// defaultLogger := logger.GetLogger("default")
// defaultLogger.Info("Listening...")
// serverMux := server.NewRestMux("/")
// serverMux.HandleMux(admin.AdminServerMux)
// go http.ListenAndServe(":8080", serverMux)
// defaultLogger.Debug("Next")
httpd := &GoHttp{}
httpd.LoadConfig("")
httpd.Start()