mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cli: add Command.setup() (#7850)
This commit is contained in:
30
vlib/cli/README.md
Normal file
30
vlib/cli/README.md
Normal file
@@ -0,0 +1,30 @@
|
||||
Usage example:
|
||||
|
||||
```v
|
||||
module main
|
||||
|
||||
import os
|
||||
import cli
|
||||
|
||||
fn main() {
|
||||
mut app := cli.Command{
|
||||
name: 'example-app'
|
||||
description: 'example-app'
|
||||
execute: fn (cmd cli.Command) ? {
|
||||
println('hello app')
|
||||
return
|
||||
}
|
||||
commands: [
|
||||
cli.Command{
|
||||
name: 'sub'
|
||||
execute: fn (cmd cli.Command) ? {
|
||||
println('hello subcommand')
|
||||
return
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
||||
app.setup()
|
||||
app.parse(os.args)
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user