Files
google-apis-rs/gen/groupsmigration1-cli/src/main.rs
Sebastian Thiel 3e0a24db0d fix(api-update): 'bytes ...' -> 'bytes=...'
* update all APIs to contain said change. It's not worth a republish
  though.
2015-04-12 08:56:48 +02:00

19 lines
443 B
Rust

// DO NOT EDIT !
// This file was generated automatically from 'src/mako/cli/main.rs.mako'
// DO NOT EDIT !
#![feature(plugin)]
#![plugin(docopt_macros)]
extern crate docopt;
extern crate rustc_serialize;
docopt!(Args derive Debug, "
Usage:
groupsmigration1 archive insert
groupsmigration1 --help
");
fn main() {
let _: Args = Args::docopt().decode().unwrap_or_else(|e| e.exit());
println!("Hello, groupsmigration:v1 !");
}