aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/cli/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/cli/README.md')
-rw-r--r--v_windows/v/vlib/cli/README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/v_windows/v/vlib/cli/README.md b/v_windows/v/vlib/cli/README.md
new file mode 100644
index 0000000..93d8d62
--- /dev/null
+++ b/v_windows/v/vlib/cli/README.md
@@ -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)
+}
+```