diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-22 17:26:57 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-22 17:26:57 -0700 |
commit | bfcf13c205e7c0fd38a0fc68194f8ab9550ca0a7 (patch) | |
tree | 423eb676a9b7ec70c5d03c2af38493adc053ebd5 /rust/src/bin/fatcatd.rs | |
parent | 7c53a08666d28f2a2f4c9572f63ae09a362b017b (diff) | |
download | fatcat-bfcf13c205e7c0fd38a0fc68194f8ab9550ca0a7.tar.gz fatcat-bfcf13c205e7c0fd38a0fc68194f8ab9550ca0a7.zip |
rustfmt, and implement schema tweaks
Diffstat (limited to 'rust/src/bin/fatcatd.rs')
-rw-r--r-- | rust/src/bin/fatcatd.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/src/bin/fatcatd.rs b/rust/src/bin/fatcatd.rs index 57b6a3da..b40ac3c4 100644 --- a/rust/src/bin/fatcatd.rs +++ b/rust/src/bin/fatcatd.rs @@ -32,8 +32,7 @@ fn main() { Arg::with_name("https") .long("https") .help("Whether to use HTTPS or not"), - ) - .get_matches(); + ).get_matches(); let decorator = slog_term::TermDecorator::new().build(); let drain = slog_term::CompactFormat::new(decorator).build().fuse(); |