summaryrefslogtreecommitdiffstats
path: root/intl/l10n/rust/l10nregistry-rs/src/fluent.rs
blob: b6ac2a12ab468458dceeb964cb28c71685f8f524 (plain)
1
2
3
4
5
use fluent_bundle::FluentBundle as FluentBundleBase;
pub use fluent_bundle::{FluentError, FluentResource};
use std::rc::Rc;

pub type FluentBundle = FluentBundleBase<Rc<FluentResource>>;