forgejo.py 337 B

1234567891011
  1. """Forgejo backend — currently API-compatible with Gitea (/api/v1)."""
  2. from backend.app.services.git_providers.gitea import GiteaBackend
  3. class ForgejoBackend(GiteaBackend):
  4. """Backend for Forgejo instances.
  5. Currently API-compatible with Gitea (/api/v1). Override methods here
  6. as the two projects' APIs diverge.
  7. """