| 50 | ` |
| 51 | |
| 52 | type postgresStore struct { |
| 53 | db *sql.DB |
| 54 | } |
| 55 | |
| 56 | // NewPostgresStore opens a Postgres-backed ledger using lib/pq (connection string / DSN). |
| 57 | func NewPostgresStore(dsn string) (Store, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected