summaryrefslogtreecommitdiffstats
path: root/src/pa_effects.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/pa_effects.rs')
-rw-r--r--src/pa_effects.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pa_effects.rs b/src/pa_effects.rs
index b82084e..9ead768 100644
--- a/src/pa_effects.rs
+++ b/src/pa_effects.rs
@@ -1,6 +1,6 @@
1use cli::pa_effects::*; 1use crate::cli::pa_effects::*;
2use utils::*; 2use crate::utils::*;
3use Filter; 3use crate::Filter;
4 4
5use failure::{Error, ResultExt}; 5use failure::{Error, ResultExt};
6 6
@@ -11,7 +11,7 @@ use std::io::{self, Write};
11const DEFAULT_PRESET: &str = include_str!("../res/default-pa-effects-preset.json"); 11const DEFAULT_PRESET: &str = include_str!("../res/default-pa-effects-preset.json");
12 12
13pub fn main(cmd: Command) -> Result<(), Error> { 13pub fn main(cmd: Command) -> Result<(), Error> {
14 use cli::pa_effects::Command::*; 14 use crate::cli::pa_effects::Command::*;
15 15
16 match cmd { 16 match cmd {
17 ExportPreset(args) => export_preset(args), 17 ExportPreset(args) => export_preset(args),