Service implements session.Service using SQLite.
| 21 | |
| 22 | // Service implements session.Service using SQLite. |
| 23 | type Service struct { |
| 24 | db *sql.DB |
| 25 | mu sync.RWMutex |
| 26 | } |
| 27 | |
| 28 | // New creates a new SQLite session service. |
| 29 | // dbPath is the path to the SQLite database file. |
nothing calls this directly
no outgoing calls
no test coverage detected