monorepo/l10n-db/src/lib.rs

24 lines
333 B
Rust
Raw Normal View History

mod bundle;
pub use bundle::Bundle;
2025-02-22 16:22:14 +00:00
mod editor;
pub use editor::Editor;
mod types;
pub use types::{Message, Variant};
/*
#[cfg(test)]
mod test {
#[test]
fn it_can_represent_an_untranslated_message() {
todo!()
}
#[test]
fn it_can_represent_a_partially_translated_message() {
todo!()
}
}
*/