summaryrefslogtreecommitdiff
path: root/flags.go
blob: e7ff85e155b63af0dd41e17e44c30561ef5025bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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()
}