Skip to content

Releases: wrfly/gua

v1.0.6

16 Nov 06:09
Compare
Choose a tag to compare

ignore the flag when its name is - or the field is un-exported

for example:

type config {
	Start string    `name:"start" desc:"in the format of 2006-01-02T15:04:05"`

	StartTime time.Time `name:"-"` // won't be shown in the flag list

	Stop string    `name:"stop" desc:"in the format of 2006-01-02T15:04:05"`

	stopTime time.Time // won't be shown in the flag list
}

v1.0.3

26 Jun 09:36
Compare
Choose a tag to compare

upgrade ecp

v1.0.2

07 Jan 03:09
Compare
Choose a tag to compare
chore: upgrade ecp to v0.1.3

v1.0.1 better

07 Aug 07:42
Compare
Choose a tag to compare
  • fix a bug (parse int slice)

V1.0.0

26 Jul 14:52
Compare
Choose a tag to compare

support basic types only, such as string/int/float/bool/slice...

seems can work, just try.