feat(client): add IPAGo client implementation

Add a new Go client implementation for interacting with the IPAGo server. The client includes functionality for authentication, searching for apps, and downloading apps. The client is structured to handle errors and retries, and includes progress reporting for downloads. The client is added to the .gitignore file and the README.md file is updated with installation instructions. The server-side code is also updated to include the Content-Length header for download progress reporting.
This commit is contained in:
2026-03-10 05:33:41 +03:00
parent ab59d53e2c
commit f53e327ec2
6 changed files with 324 additions and 2 deletions

View File

@ -10,4 +10,5 @@ type DownloadOutput struct {
Body func(huma.Context)
ContentDisposition string `header:"Content-Disposition"`
ContentType string `header:"Content-Type"`
ContentLength int64 `header:"Content-Length"`
}