11 lines
130 B
Go
11 lines
130 B
Go
//go:build local
|
|
// +build local
|
|
|
|
package license
|
|
|
|
import "fmt"
|
|
|
|
func VerifyLicense() {
|
|
fmt.Println("license is not required")
|
|
}
|