v/vlib/cli
Delyan Angelov 728344ff65
ci: fix `v test-cleancode`
2021-01-25 12:55:01 +02:00
..
README.md
command.v
command_test.v
flag.v
flag_test.v
help.v ci: fix `v test-cleancode` 2021-01-25 12:55:01 +02:00
version.v

README.md

Usage example:

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)
}