package logs import ( "fmt" ) func Error(v ...interface{}) { fmt.Println(v) } func Debug(v ...interface{}) { fmt.Println(v) } func Info(v ...interface{}) { fmt.Println(v) }