GetLoginUUID 获取登录的uuid
(ctx context.Context)
| 183 | |
| 184 | // GetLoginUUID 获取登录的uuid |
| 185 | func (c *Client) GetLoginUUID(ctx context.Context) (*http.Response, error) { |
| 186 | req, err := c.mode.BuildGetLoginUUIDRequest(ctx) |
| 187 | if err != nil { |
| 188 | return nil, err |
| 189 | } |
| 190 | return c.Do(req) |
| 191 | } |
| 192 | |
| 193 | // GetLoginQrcode 获取登录的二维吗 |
| 194 | func (c *Client) GetLoginQrcode(ctx context.Context, uuid string) (*http.Response, error) { |
nothing calls this directly
no test coverage detected