Renamed new flags '-allow-tables', '-allow-views', and '-allow-enums' description.
This commit is contained in:
parent
c35892320d
commit
dbfcec7fbe
1 changed files with 3 additions and 3 deletions
|
|
@ -94,9 +94,9 @@ func init() {
|
||||||
flag.StringVar(&viewPkg, "rel-view-path", "view", "Relative path for the View files package from the destination directory.")
|
flag.StringVar(&viewPkg, "rel-view-path", "view", "Relative path for the View files package from the destination directory.")
|
||||||
flag.StringVar(&enumPkg, "rel-enum-path", "enum", "Relative path for the Enum files package from the destination directory.")
|
flag.StringVar(&enumPkg, "rel-enum-path", "enum", "Relative path for the Enum files package from the destination directory.")
|
||||||
|
|
||||||
flag.StringVar(&allowTables, "allow-tables", "", `Comma-separated list of tables to allow.`)
|
flag.StringVar(&allowTables, "allow-tables", "", `Comma-separated list of tables to allow. Takes precedence over --ignore-tables flag.`)
|
||||||
flag.StringVar(&allowViews, "allow-views", "", `Comma-separated list of views to allow. Will override ignore-views flag.`)
|
flag.StringVar(&allowViews, "allow-views", "", `Comma-separated list of views to allow. Takes precedence over --ignore-views flag.`)
|
||||||
flag.StringVar(&allowEnums, "allow-enums", "", `Comma-separated list of enums to allow.`)
|
flag.StringVar(&allowEnums, "allow-enums", "", `Comma-separated list of enums to allow. Takes precedence over --ignore-enums flag.`)
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue