init: first extract of implementation

This commit is contained in:
2025-10-25 00:54:20 +02:00
parent dffe374460
commit 51aea5effb
18 changed files with 4441 additions and 23 deletions

View File

@@ -0,0 +1,19 @@
"""
Local SQLite Backend
A local, file-based issue tracking backend using SQLite for storage.
This backend provides complete offline functionality and serves as the
reference implementation for the backend interface.
Features:
- Full CRUD operations
- SQLite database storage
- No external dependencies
- Offline operation
- Fast local search
- Backup and export capabilities
"""
from .backend import LocalSQLiteBackend
__all__ = ['LocalSQLiteBackend']