| 10 | ) |
| 11 | |
| 12 | type Store struct { |
| 13 | db *sql.DB |
| 14 | wt time.Duration |
| 15 | rt time.Duration |
| 16 | } |
| 17 | |
| 18 | func NewStore(connStr string, wt time.Duration, rt time.Duration) (*Store, error) { |
| 19 | db, err := sql.Open("postgres", connStr) |
nothing calls this directly
no outgoing calls
no test coverage detected