fix(api-update): 'bytes ...' -> 'bytes=...'

* update all APIs to contain said change. It's not worth a republish
  though.
This commit is contained in:
Sebastian Thiel
2015-04-12 08:56:48 +02:00
parent 75e73d56d9
commit 3e0a24db0d
161 changed files with 220 additions and 80 deletions

View File

@@ -1,3 +1,19 @@
// 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 !");
}