generated from coulomb/repo-seed
17 lines
386 B
Python
17 lines
386 B
Python
"""
|
|
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'] |