27 lines
284 B
Go
27 lines
284 B
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
var (
|
|
//go:embed LICENSE
|
|
license string
|
|
|
|
printLicense bool
|
|
)
|
|
|
|
func init() {
|
|
flag.BoolVar(&printLicense, "license", false, "Print license")
|
|
}
|
|
|
|
func tryLicense() {
|
|
if printLicense {
|
|
fmt.Println(license)
|
|
os.Exit(0)
|
|
}
|
|
}
|