mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
16 lines
153 B
Text
16 lines
153 B
Text
module completions {
|
|
|
|
export extern my-app [
|
|
-c
|
|
-v
|
|
]
|
|
|
|
# Subcommand
|
|
export extern "my-app test" [
|
|
-d
|
|
-c
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|