From bb2c87dbd356dce31072b0df5b72395bf98afd30 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Tue, 3 Feb 2026 17:08:28 -0700 Subject: [PATCH] one io.EOF left --- src/config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.go b/src/config.go index 899d403..38bdb72 100644 --- a/src/config.go +++ b/src/config.go @@ -3,7 +3,6 @@ package src import ( "context" "encoding/json" - "io" "os" ) @@ -26,7 +25,7 @@ func NewConfig(ctx context.Context) (Config, error) { } config.db = db - return config, io.EOF + return config, nil } func newConfig() (Config, error) {