summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-19add vendorAlex Flint
2018-11-19add initial go.mod, go.sumAlex Flint
2018-11-19Merge pull request #2 from pborzenkov/text-unmarshaler-valueAlex Flint
Allow to use values (not pointers) with TextUnmarshaler
2018-11-18Drop special handling of net.IP typePavel Borzenkov
It's now completely covered by generic TextUnmarshaler case. Signed-off-by: Pavel Borzenkov <[email protected]>
2018-11-16Allow to use values (not pointers) with TextUnmarshalerPavel Borzenkov
The patch makes sure that both values and pointer to values are checked for custom TextUnmarshal implementation. This will allow to use go-arg custom parsing as follows: var args struct { Arg CustomType } instead of var args struct { Arg *CustomType } Signed-off-by: Pavel Borzenkov <[email protected]>
2017-02-15Merge pull request #1 from alexflint/travis_pingAlex Flint
fix test failures
2017-02-15whitespaceAlex Flint
2017-02-15fix testsAlex Flint
2017-02-15minor tweakAlex Flint
2017-02-15add misc support filesAlex Flint
2017-02-15add readmeAlex Flint
2017-02-15based functions all workingAlex Flint