mirror of
https://github.com/clap-rs/clap
synced 2024-12-17 08:03:59 +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 *
|