1 Commits

Author SHA1 Message Date
Adrian Zürcher
6f963ae0a4 learn lessions 2025-04-16 09:36:50 +02:00
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
package main
package logging
import (
"fmt"

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)
}