add fixes

This commit is contained in:
Andrew Woodlee 2022-10-13 12:14:26 -05:00
parent 82fe80dd0b
commit 0203cb4286

View File

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