diff --git a/README.md b/README.md index a8b79c9..36295a9 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ client Main implementation interfaces ```go type LicenseCli interface { GenerateActivationCode(opts ...GenerateOption) ([]byte, error) - ActivateLicense(licenseCode []byte) (bool, error) - VerifyLicense() (bool, error) + ActivateLicense(licenseCode []byte) error + VerifyLicense() bool GetLicenseInfo() (*LicenseInfo, error) } ```