(app_id: str, private_key: str, installation_id: str)
| 72 | |
| 73 | |
| 74 | def init_github_app(app_id: str, private_key: str, installation_id: str): |
| 75 | global github_app_auth |
| 76 | github_app_auth = GitHubAppAuth(app_id, private_key, installation_id) |
| 77 | logger.info(f"GitHub App auth initialized (App ID: {app_id}, Installation: {installation_id})") |
| 78 | |
| 79 | |
| 80 | async def get_github_token() -> str | None: |
no test coverage detected