SQLiteStore implements event.Store using SQLite.
| 13 | |
| 14 | // SQLiteStore implements event.Store using SQLite. |
| 15 | type SQLiteStore struct { |
| 16 | db *sql.DB |
| 17 | } |
| 18 | |
| 19 | // Open creates a new SQLite database connection. |
| 20 | func Open(dsn string) (*sql.DB, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected