learn lessions

This commit is contained in:
Adrian Zürcher
2025-04-16 09:36:50 +02:00
parent cdbeaf3940
commit 6f963ae0a4
2 changed files with 4 additions and 2 deletions

View File

@@ -1,8 +1,10 @@
package main
import "github.com/tecamino/tecamino-logger/logging"
func main() {
debug := false
log, err := NewLogger("Test", debug)
log, err := logging.NewLogger("Test", debug)
if err != nil {
panic(err)
}