blob: 2696ce4cc3e0ae11be9ffd3585742a36b405f886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package main
import (
"flag"
"fmt"
)
const help = `Ceres - A recipe server for your home network
`
func parseFlags() {
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), help)
}
flag.Parse()
}
|