Add gitea-shim integration and update workflow services

This commit is contained in:
2025-06-23 13:14:20 -03:00
parent b0e9dcf3a1
commit 1b62e9c3d4
19 changed files with 2856 additions and 7 deletions

View File

@ -0,0 +1,7 @@
"""Model classes for Gitea GitHub shim."""
from .repository import Repository
from .pull_request import PullRequest
from .user import User
__all__ = ['Repository', 'PullRequest', 'User']