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,17 @@
"""
Gitea Backend
A backend implementation for Gitea issue tracking systems.
This backend provides integration with Gitea API for remote issue management.
Features:
- Full Gitea API integration
- GitHub-compatible operations
- Remote synchronization
- Authentication support
- Rate limiting compliance
"""
from .backend import GiteaBackend
__all__ = ['GiteaBackend']