bosun library

Support for doing something awesome.

More dartdocs go here.

Classes

BosunCommand
BosunCommand is the entry point into bosun from your application Generally your main method for your CLI will create a BosunCommand passing in your application name and any subcommands and then pass that to Bosun's execute method to process and execute the command. See the example folder in the Bosun repo for more information.
Command
Command is an abstract class that defines the interface for a command. Your CLI commands will extend Command and fill out the details that they provide. Additionally, you'll have to override the run method of the command.

Functions

execute(BosunCommand command, List<String> args) → void