update README.md

This commit is contained in:
xslasd
2024-02-02 13:12:19 +08:00
parent f80abd7cac
commit 7377af8406

View File

@@ -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)
}
```