#[derive(Clone, Debug)]
pub struct ScriptDetector;
impl ScriptDetector {
pub fn detect(_source: &str) -> Script {
Script::Unknown
}
}
#[derive(Clone, Debug)]
pub enum Script {
Unknown,
}
pub fn normalize_source(source: &str) -> String {
source.to_string()
}