fastpastebin/vendor/gitlab.com/pztrn/flagger
Stanislav Nikitin 19b5ef3d9f
Fastfix for previous two commits (sorry) and chroma update.
Well, doing "git add ." not from repository's root is a bad idea.

Updated chroma dependency, added more languages to syntax highlighting.
2019-03-07 08:43:28 +05:00
..
.gitignore Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
.gitlab-ci.yml Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
.travis.yml Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
Gopkg.lock Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
Gopkg.toml Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
LICENSE Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
README.md Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
exported.go Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
flag.go Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
flagger.go Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
gitlab-ci.yml Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00
loggerinterface.go Fastfix for previous two commits (sorry) and chroma update. 2019-03-07 08:43:28 +05:00

README.md

GoDoc

Flagger

Flagger is an arbitrary CLI flags parser, like argparse in Python. Flagger is able to parse boolean, integer and string flags.

Installation

go get -u -v lab.pztrn.name/golibs/flagger

Usage

Flagger requires logging interface to be passed on initialization. See loggerinterface.go for required logging functions. It is able to run with standart log package, in that case initialize flagger like:

flgr = flagger.New("My Super Program", flagger.LoggerInterface(log.New(os.Stdout, "testing logger: ", log.Lshortfile)))
flgr.Initialize()

Adding a flag is easy, just fill Flag structure and pass to AddFlag() call:

flag_bool := Flag{
    Name: "boolflag",
    Description: "Boolean flag",
    Type: "bool",
    DefaultValue: true,
}
err := flgr.AddFlag(&flag_bool)
if err != nil {
    ...
}

After adding all neccessary flags you should issue Parse() call to get them parsed:

flgr.Parse()

After parsed they can be obtained everywhere you want, like:

val, err := flgr.GetBoolValue("boolflag")
if err != nil {
    ...
}

For more examples take a look at flagger_test.go file or at GoDoc.

Get help

If you want to report a bug - feel free to report it via Gitlab's issues system. Note that everything that isn't a bug report or feature request will be closed without any futher comments.

If you want to request some help (without warranties), propose a feature request or discuss flagger in any way - please use our mailing lists at flagger@googlegroups.com. To be able to send messages there you should subscribe by sending email to flagger+subscribe@googlegroups.com, subject and mail body can be random.