mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
12 lines
184 B
Go
12 lines
184 B
Go
|
package mocks
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/hay-kot/git-web-template/backend/pkgs/logger"
|
||
|
)
|
||
|
|
||
|
func GetStructLogger() *logger.Logger {
|
||
|
return logger.New(os.Stdout, logger.LevelDebug)
|
||
|
}
|