11 lines
385 B
Python
11 lines
385 B
Python
|
|
"""
|
||
|
|
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
|
||
|
|
"""
|