ADD: added first version

This commit is contained in:
hwinkel
2026-01-14 22:44:12 +01:00
commit 2b892123e1
18 changed files with 580 additions and 0 deletions

10
internal/logger/logger.go Normal file
View File

@@ -0,0 +1,10 @@
package logger
import (
"log"
"os"
)
func New(prefix string) *log.Logger {
return log.New(os.Stdout, prefix+" ", log.LstdFlags|log.Lshortfile)
}