SQLite storage.
| 36 | |
| 37 | // SQLite storage. |
| 38 | type SQLite struct { |
| 39 | name string |
| 40 | |
| 41 | db *sql.DB |
| 42 | bob bob.DB |
| 43 | wg sync.WaitGroup |
| 44 | |
| 45 | ctx context.Context |
| 46 | cancelCtx context.CancelFunc |
| 47 | } |
| 48 | |
| 49 | func init() { |
| 50 | _ = storage.Register("sqlite", func(name, location string) (storage.Interface, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected