blob: 4abd1f8af4cf7eb8fbddb9ae8d948c38d87a3e96 (
plain) (
blame)
1
2
3
4
5
6
7
|
package api
// CaptchaForce api method.
func (vk *VK) CaptchaForce(params Params) (response int, err error) {
err = vk.RequestUnmarshal("captcha.force", &response, params)
return
}
|