sflags icon indicating copy to clipboard operation
sflags copied to clipboard

Generate flags by parsing structures

Results 10 sflags issues
Sort by recently updated
recently updated
newest added

module declares its path as: github.com/sflags but was required as: github.com/octago/sflags go mod tidy fails

For example ``` type Multi struct { Word Word } type Word struct { String string } type Config struct { Multi *Multi MultiWord *Word } ``` This sort of...

Incorrectly specifying the module name as github.com/sflags makes this module impossible to use with `GO111MODULES=on`

The go.mod path is incorrect which causes this error when running `go mod tidy`: ``` github.com/octago/sflags/gen/gcli: github.com/octago/[email protected]: parsing go.mod: module declares its path as: github.com/sflags but was required as: github.com/octago/sflags...

It looks like there was a typo in the go module name introduced in #19: ``` $ go get -u github.com/octago/sflags go: github.com/octago/sflags upgrade => v0.3.0 go get: github.com/octago/[email protected]: parsing...

Hi, Hope you are all well ! I am using [amalgomate](https://github.com/palantir/amalgomate), a go tool for combining multiple different main packages into a single program or library, and I would like...

- [ ] map[string]string - [ ] map[string]int Something similar to kingpin`s stringMap implementation https://github.com/alecthomas/kingpin/blob/bf17db2c43f59ff3d97a39d1feacef18d75eaf95/values.go#L135 --map=key1:val1 --map=key2:val2

`--when "tomorrow at 8 a.m"` https://github.com/olebedev/when

Hello ! I'm posting a little message to "advertise" a project I've been working for a long time now, which is a merging of your own work and the concepts...