diff --git a/logger.go b/logging/logging.go similarity index 98% rename from logger.go rename to logging/logging.go index 25f2e73..1f0fce7 100644 --- a/logger.go +++ b/logging/logging.go @@ -1,4 +1,4 @@ -package main +package logging import ( "fmt" diff --git a/main.go b/main.go index 37758d7..b658f7f 100644 --- a/main.go +++ b/main.go @@ -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) }