You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 26, 2023. It is now read-only.
For some flags I create my own type so I can apply the flag multiple times and store it in a slice. It looks something like this.
./myapp -multi 1 -multi 2 -multi 3This works great but when I try to use a config I always only get the first value.
./myapp -config my.conf
The value of multi is always just
[1].Is there a way I can get this to work when using a configuration file?