Module conductor::cmd [] [src]

Various commands which can be performed on a conductor project, corresponding to CLI entry points.

To gain access to all commands at once:

use conductor::cmd::*;Run

Traits

CommandBuild

We implement conductor build with a trait so we put it in its own module.

CommandExec

We implement conductor exec with a trait so we can put it in its own module.

CommandGenerate

Interface to various file-generation commands.

CommandPull

We implement conductor pull with a trait so we put it in its own module.

CommandRepo

We implement conductor repo with a trait so we put it in its own module.

CommandRun

We implement conductor run with a trait so we put it in its own module.

CommandStop

We implement conductor stop with a trait so we put it in its own module.

CommandUp

We implement conductor up with a trait so we put it in its own module.