dioxus_translate_types/
lib.rs

1pub trait Translator {
2    fn en() -> Self;
3    #[cfg(feature = "ko")]
4    fn ko() -> Self;
5}