package main import ( "flag" "fmt" ) const help = `Ceres - Recipe server for local networks Usage: ceres [-h | --help] -h, --help show this help page and exit ` func parseFlags() { flag.Usage = func() { fmt.Fprintf(flag.CommandLine.Output(), help) } flag.Parse() }