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

@ -1,3 +1,9 @@
# Пример установки
```bash
git clone https://gitea.yuharan.ru/public/IPAGo.git
cd IPAGo
PORT=9001 CONTAINER_NAME=mrxtrojanicloudcom docker compose up -d --build
```