badger/internal/tools/help.go

20 lines
296 B
Go
Raw Normal View History

2023-03-14 09:53:33 +01:00
package tools
import (
"fmt"
"os"
)
// exported function(s)
func PrintHelp() {
fmt.Println(
"usage:\n" +
" badger [options]\n" +
"\n" +
" options:\n" +
" -h, --help display this help\n" +
" -c, --config specify the path to the config file",
)
os.Exit(0)
}