mirror of
https://github.com/clap-rs/clap
synced 2025-01-10 03:38:50 +00:00
17 lines
153 B
Text
17 lines
153 B
Text
|
module completions {
|
||
|
|
||
|
export extern my-app [
|
||
|
-c
|
||
|
-v
|
||
|
]
|
||
|
|
||
|
# Subcommand
|
||
|
export extern "my-app test" [
|
||
|
-d
|
||
|
-c
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|