Refactor into package structure

This commit is contained in:
2020-11-11 01:46:48 +01:00
parent 04fa50d9ae
commit 27993e9fa0
13 changed files with 329 additions and 179 deletions

View File

@ -0,0 +1,7 @@
package logging
import "github.com/sirupsen/logrus"
var (
Logger logrus.Logger = *logrus.New()
)