fix(config): fixed modules
This commit is contained in:
parent
226b19a177
commit
05848b6701
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
|
||||
mod ffmpeg;
|
||||
pub mod ffmpeg;
|
||||
|
||||
#[allow(non_camel_case_types)] // this is allowed cuz we want to use snake case in the config file
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use std::process::{Child, Command};
|
||||
|
||||
use crate::configuration::ConfigFFmpeg;
|
||||
use crate::configuration::ffmpeg::ConfigFFmpeg;
|
||||
use crate::error;
|
||||
|
||||
pub struct TranscodeJob {
|
||||
|
|
Loading…
Reference in a new issue