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,19 @@
"""Gitea GitHub Shim - A GitHub-compatible interface for Gitea."""
from .gitea_github_shim import GiteaGitHubShim
from .config import get_github_client, is_gitea_mode, get_api_info, config
from .models.repository import Repository
from .models.user import User
from .models.pull_request import PullRequest
__version__ = "0.1.0"
__all__ = [
"GiteaGitHubShim",
"get_github_client",
"is_gitea_mode",
"get_api_info",
"config",
"Repository",
"User",
"PullRequest"
]