Added code for backend glue

This commit is contained in:
2025-10-13 19:20:24 -04:00
parent 692b069b5b
commit 29a451ab58
25 changed files with 1063 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package logx
import (
"log"
)
type Logger struct{}
func New() *Logger {
return &Logger{}
}
func (l *Logger) Infof(format string, v ...any) {
log.Printf("INFO "+format, v...)
}
func (l *Logger) Errorf(format string, v ...any) {
log.Printf("ERROR "+format, v...)
}