v/vlib/cli
zakuro 9c74fb0449
cli: fix bug that caused help to panic (#11157)
2021-08-12 09:25:28 +03:00
..
README.md
command.v cli: have a posix mode to handle -- (#11133) 2021-08-11 12:26:17 +03:00
command_test.v cli: have a posix mode to handle -- (#11133) 2021-08-11 12:26:17 +03:00
flag.v cli: have a posix mode to handle -- (#11133) 2021-08-11 12:26:17 +03:00
flag_test.v
help.v cli: fix bug that caused help to panic (#11157) 2021-08-12 09:25:28 +03:00
help_test.v cli: fix bug that caused help to panic (#11157) 2021-08-12 09:25:28 +03: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)
}