add oss stub for autoloaded getter in core (#29024)

* add oss stub for autoloaded getter in core

* add changelog
This commit is contained in:
helenfufu
2024-11-25 15:46:15 -08:00
committed by GitHub
parent b20beaec66
commit 33ccf6e119
2 changed files with 7 additions and 0 deletions

3
changelog/29024.txt Normal file
View File

@@ -0,0 +1,3 @@
```release-note:improvement
core: Add autoloaded license getter.
```

View File

@@ -31,6 +31,10 @@ func (c *Core) EntGetLicenseState() (*LicenseState, error) {
return nil, nil
}
func (c *Core) EntGetLicense() (string, error) {
return "", nil
}
func (c *Core) EntReloadLicense() error {
return nil
}