v/vlib/cli
Uwe Krüger d26ac5692e
all: various fixes for [heap]/auto-heap handling (#10033)
2021-05-07 15:58:48 +03:00
..
README.md cli: add Command.setup() (#7850) 2021-01-05 13:25:25 +02:00
command.v all: various fixes for [heap]/auto-heap handling (#10033) 2021-05-07 15:58:48 +03:00
command_test.v all: bring back `panic(err.msg)` -> `panic(err)` (#9022) 2021-03-01 00:18:14 +01:00
flag.v cli: improve multiple value management (#8310) 2021-03-19 13:09:56 +02:00
flag_test.v cli: improve multiple value management (#8310) 2021-03-19 13:09:56 +02:00
help.v all: automatically move (some) referenced objects to heap (#9873) 2021-04-25 21:40:38 +03:00
version.v cli: various improvements (#6180) 2020-08-20 23:14:53 +02:00

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