This commit is contained in:
Bel LaPointe
2025-04-24 21:50:18 -06:00
parent 36f8efd0e7
commit b7a7f2a82f
9 changed files with 278 additions and 0 deletions

15
src/cmd/config.go Normal file
View File

@@ -0,0 +1,15 @@
package cmd
import (
"context"
"show-rss/src/db"
)
func Config(ctx context.Context) (context.Context, error) {
ctx, err := db.Inject(ctx)
if err != nil {
return ctx, err
}
return ctx, nil
}