backy/pkg/logging/logging.go

11 lines
115 B
Go
Raw Normal View History

2022-10-13 17:03:36 +00:00
package logging
2022-10-13 17:14:26 +00:00
type Logging struct {
Err error
Output string
}
func logger() Logging {
return Logging{}
2022-10-13 17:03:36 +00:00
}