diff options
Diffstat (limited to 'src/pa_effects.rs')
-rw-r--r-- | src/pa_effects.rs | 8 |
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 @@ | |||
1 | use cli::pa_effects::*; | 1 | use crate::cli::pa_effects::*; |
2 | use utils::*; | 2 | use crate::utils::*; |
3 | use Filter; | 3 | use crate::Filter; |
4 | 4 | ||
5 | use failure::{Error, ResultExt}; | 5 | use failure::{Error, ResultExt}; |
6 | 6 | ||
@@ -11,7 +11,7 @@ use std::io::{self, Write}; | |||
11 | const DEFAULT_PRESET: &str = include_str!("../res/default-pa-effects-preset.json"); | 11 | const DEFAULT_PRESET: &str = include_str!("../res/default-pa-effects-preset.json"); |
12 | 12 | ||
13 | pub fn main(cmd: Command) -> Result<(), Error> { | 13 | pub 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), |