We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i added reboot method from your project, but I don't have the permissions to push now
The text was updated successfully, but these errors were encountered:
package xiaomirouterapi const ( rebootPath = "xqsystem/reboot" ) type RebootResp struct { LanIP []LanIP `json:"lanIp"` Code int `json:"code"` } type LanIP struct { Mask string `json:"mask"` Ip string `json:"ip"` } func (api *MiWifiApi) Reboot() (*RebootResp, error){ apiURL := api.buildApiURL(rebootPath, "api") resp := &RebootResp{} err := sendGetRequest(apiURL, &resp) if err != nil { return nil, err } return resp, nil }
Sorry, something went wrong.
@MrViktorNikolaevich hi, can you create a pull request from other branch to master?
No branches or pull requests
Hi, i added reboot method from your project, but I don't have the permissions to push now
The text was updated successfully, but these errors were encountered: