source: code/trunk/cmd/mai/flag.go@ 65

Last change on this file since 65 was 65, checked in by yakumo.izuru, 17 months ago

Remove verbose logging, it's no-op with Fiber

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 175 bytes
RevLine 
[56]1// Set up a basic command line flags parsing
2package main
3
4import (
5 "flag"
6)
7
8func parseFlags() {
9 flag.StringVar(&configfile, "f", "", "Configuration file")
10 flag.Parse()
11}
Note: See TracBrowser for help on using the repository browser.