SQLiteSessionStore implements Store using SQLite
| 365 | |
| 366 | // SQLiteSessionStore implements Store using SQLite |
| 367 | type SQLiteSessionStore struct { |
| 368 | db *sql.DB |
| 369 | } |
| 370 | |
| 371 | // sessionSelectColumns is the canonical SELECT list for the sessions table. |
| 372 | // The column order matches what scanSession expects; all read paths use this |
nothing calls this directly
no outgoing calls
no test coverage detected