1 2 3 4 5 6 7 8 9 10 11 12
#![cfg(feature = "converter")] use std::sync::Arc; use crate::tiles::state::make_state; mod api; mod conversion_tabs; mod service; pub mod ui; make_state!(content_state, Arc<str>);