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

6
.gitignore vendored
View File

@ -206,9 +206,9 @@ cython_debug/
.abstra/
# Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
# .vscode/
@ -225,3 +225,5 @@ __marimo__/
# Streamlit
.streamlit/secrets.toml
IPAGoClient