From 50dd77248cda18efe23bdb15b04eef1bf3d55756 Mon Sep 17 00:00:00 2001 From: syscats Date: Sun, 4 Feb 2024 14:27:46 +0100 Subject: [PATCH] fix: fix case for module function declaration --- pkg/utils/returnApiOutput.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/utils/returnApiOutput.go b/pkg/utils/returnApiOutput.go index 3de6cda..4c10a1b 100644 --- a/pkg/utils/returnApiOutput.go +++ b/pkg/utils/returnApiOutput.go @@ -4,7 +4,7 @@ import ( "fmt" ) -func returnApiOutput() { +func ReturnApiOutput() { const data = `{"key": "value"}` fmt.Println(data) }