Files
crawlab/core/utils/system.go
2024-06-14 15:42:50 +08:00

8 lines
134 B
Go

package utils
import "github.com/spf13/viper"
func IsPro() bool {
return viper.GetString("info.edition") == "global.edition.pro"
}