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
type logging struct {
err error
output string
type Logging struct {
Err error
Output string
}
func logger() Logging {
return Logging{}
}