From 0203cb42868c3bca0b56c517d6ab006d54d855e3 Mon Sep 17 00:00:00 2001 From: Andrew Woodlee Date: Thu, 13 Oct 2022 12:14:26 -0500 Subject: [PATCH] add fixes --- cmd/logging/logging.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cmd/logging/logging.go b/cmd/logging/logging.go index 5d4aac6..cbf8663 100644 --- a/cmd/logging/logging.go +++ b/cmd/logging/logging.go @@ -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{} }