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
type Multi struct {
Word Word
}
type Word struct {
String string
}
type Config struct {
Multi *Multi
MultiWord *Word
}
This sort of config results in both of those options being turned into the flag multi-word-string . This causes some issues when sflags is used in combination with config file parsing libraries because it's impossible to automatically determine if multi-word-string is multi.word.string or multi-word.string.
The text was updated successfully, but these errors were encountered:
For example
This sort of config results in both of those options being turned into the flag
multi-word-string
. This causes some issues when sflags is used in combination with config file parsing libraries because it's impossible to automatically determine ifmulti-word-string
ismulti.word.string
ormulti-word.string
.The text was updated successfully, but these errors were encountered: