changed path

This commit is contained in:
2022-10-13 13:38:42 -05:00
parent efbc7619f1
commit 62be691fea
2 changed files with 5 additions and 5 deletions

10
pkg/logging/logging.go Normal file
View File

@ -0,0 +1,10 @@
package logging
type Logging struct {
Err error
Output string
}
func logger() Logging {
return Logging{}
}