Document gitea api a little more
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-04-14 23:58:24 +02:00
parent f7bd033eae
commit 6585a6ed30

View File

@ -12,6 +12,8 @@ class GiteaClient:
This class provides methods to interact with a Gitea instance's API, This class provides methods to interact with a Gitea instance's API,
including retrieving repository information, creating branches, and fetching issues. including retrieving repository information, creating branches, and fetching issues.
Read more about the Gitea API here: https://gitea.com/api/swagger
Attributes: Attributes:
gitea_url (str): The base URL for the Gitea API endpoints. gitea_url (str): The base URL for the Gitea API endpoints.
session (requests.Session): HTTP session for making API requests. session (requests.Session): HTTP session for making API requests.