$ cargo prototype --watch
Compiling prototype v0.1.0
Finished dev [unoptimized] in 0.3s
Watching for changes...
use prototype::{Builder, Config};
fn main() {
let app = Builder::new()
.config(Config::default())
.watch("src/**/*.rs")
.build();
app.run();
}