Skip to content

Commit

Permalink
[shuffle] stop double declaring mods in main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dimroc committed Nov 29, 2021
1 parent 11d5ca1 commit b923e8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 4 additions & 0 deletions shuffle/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
// SPDX-License-Identifier: Apache-2.0

pub mod account;
pub mod build;
pub mod console;
pub mod context;
pub mod deploy;
pub mod dev_api_client;
pub mod new;
pub mod node;
pub mod shared;
pub mod test;
pub mod transactions;
12 changes: 1 addition & 11 deletions shuffle/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,7 @@ use diem_types::account_address::AccountAddress;
use std::{fs, path::PathBuf};
use structopt::StructOpt;

mod account;
mod build;
mod console;
mod context;
mod deploy;
mod dev_api_client;
mod new;
mod node;
mod shared;
mod test;
mod transactions;
use shuffle::{account, build, console, deploy, new, node, shared, test, transactions};

#[tokio::main]
pub async fn main() -> Result<()> {
Expand Down

0 comments on commit b923e8a

Please sign in to comment.