aboutsummaryrefslogtreecommitdiff
path: root/remuxer/src/lib.rs
blob: 69a6f4b448f3dcdc19e2890a3ab3db760360e4bd (plain)
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

use jellycommon::Source;

pub struct RemuxerContext {}

impl RemuxerContext {
    pub fn generate(&self, path_base: PathBuf, source: Source) {}
}