优化代码

This commit is contained in:
GoEdgeLab
2021-10-22 13:40:04 +08:00
parent d17d60c53a
commit a241186633
3 changed files with 9 additions and 4 deletions

View File

@@ -4,7 +4,11 @@
package authority
import (
"github.com/iwind/TeaGo/dbs"
)
// IsPlus 判断是否为企业版
func (this *AuthorityKeyDAO) IsPlus(tx *dbs.Tx) (bool, error) {
return false
return false, nil
}