DB is a postgres db, for dev and production
| 37 | |
| 38 | // DB is a postgres db, for dev and production |
| 39 | type DB struct { |
| 40 | dbProxy |
| 41 | squirrel.StatementBuilderType |
| 42 | } |
| 43 | |
| 44 | type dbProxy interface { |
| 45 | Exec(query string, args ...any) (sql.Result, error) |
nothing calls this directly
no outgoing calls
no test coverage detected