summary refs log tree commit diff
path: root/src/translation/mod.rs
blob: 4a1b358125af9b60a00104d2a1050316bd10ec75 (plain)
1
2
3
4
5
6
7
8
9
10
11
use std::collections::BTreeMap;

use relm4::SharedState;

use crate::subtitles::StreamIndex;

pub mod deepl;

pub use deepl::DeeplTranslator;

pub static TRANSLATIONS: SharedState<BTreeMap<StreamIndex, Vec<String>>> = SharedState::new();