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

11
backends/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""
Issue Tracking Backend Plugins
This package contains implementations for various issue tracking backends.
Each backend implements the IssueBackend interface to provide a consistent
API regardless of the underlying issue tracking system.
Available Backends:
- local: SQLite-based local backend for offline use
- gitea: Gitea API backend for GitHub-compatible systems
"""