summaryrefslogtreecommitdiffstats
path: root/src/modules/aws.rs
diff options
context:
space:
mode:
authorZhenhui Xie <xiezh0831@yahoo.co.jp>2019-10-06 05:13:03 +0800
committerKevin Song <chipbuster@users.noreply.github.com>2019-10-05 16:13:03 -0500
commit044e10de1b1b1821a8108574491f22b8daf48233 (patch)
treeccf2e6ee457ee3618c785f2a6329f65c79130619 /src/modules/aws.rs
parent7657af068070b166bf468909bc1c71e8d9ff1b41 (diff)
chore: Import shared types from super (#492)
Changes imports statements to make imports more uniform.
Diffstat (limited to 'src/modules/aws.rs')
-rw-r--r--src/modules/aws.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/aws.rs b/src/modules/aws.rs
index fb8fabfa7..8e6fd50f9 100644
--- a/src/modules/aws.rs
+++ b/src/modules/aws.rs
@@ -1,8 +1,7 @@
use std::env;
-use super::{Context, Module};
+use super::{Context, Module, RootModuleConfig};
-use crate::config::RootModuleConfig;
use crate::configs::aws::AwsConfig;
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {