# ikuai **Repository Path**: hanscoding/ikuai ## Basic Information - **Project Name**: ikuai - **Description**: ikuai 工具 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-07 - **Last Updated**: 2024-06-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IKuai SDK 自用 IKuai SDK,封装了部分爱快的接口。 ### 依赖 ```shell go get -u https://github.com/jakeslee/ikuai ``` ### 使用 ```go i := NewIKuai("http://10.10.1.253", "test", "test123", true, false) login, err := i.Login() if err != nil { log.Error(err) } result, err := client.ShowSysStat() if err != nil { return } log.Printf("%+v", result) ```