one io.EOF left

This commit is contained in:
Bel LaPointe
2026-02-03 17:08:28 -07:00
parent f78d0d1f59
commit bb2c87dbd3

View File

@@ -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) {