Skip to content

Commit

Permalink
apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
daschl committed May 20, 2020
1 parent 50f6c07 commit 3aaa3d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod analytics;
mod analytics_indexes;
mod analytics_datasets;
mod analytics_dataverses;
mod analytics_indexes;
mod buckets;
mod buckets_config;
mod clusters;
Expand All @@ -21,9 +21,9 @@ mod use_cmd;
mod util;

pub use analytics::Analytics;
pub use analytics_indexes::AnalyticsIndexes;
pub use analytics_datasets::AnalyticsDatasets;
pub use analytics_dataverses::AnalyticsDataverses;
pub use analytics_indexes::AnalyticsIndexes;
pub use buckets::Buckets;
pub use buckets_config::BucketsConfig;
pub use clusters::Clusters;
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
tokio::task::spawn(spawn_and_serve(state.clone()));
}

if !opt.no_motd && opt.script.is_none() && opt.command.is_none() {
if !opt.no_motd && opt.script.is_none() && opt.command.is_none() {
fetch_and_print_motd().await;
}

Expand Down

0 comments on commit 3aaa3d8

Please sign in to comment.