增加授权验证

This commit is contained in:
nuknal
2024-12-12 14:44:44 +08:00
parent 1e738907c7
commit c37bd0908a
18 changed files with 1096 additions and 3 deletions

10
license/no_license.go Normal file
View File

@@ -0,0 +1,10 @@
//go:build local
// +build local
package license
import "fmt"
func VerifyLicense() {
fmt.Println("license is not required")
}