aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 49cc13a..7b12a93 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -8,8 +8,8 @@ pub mod error;
type TypedFluentBundle = FluentBundle<Arc<FluentResource>, IntlLangMemoizer>;
pub struct Localiser {
- bundles: HashMap<LanguageIdentifier, TypedFluentBundle>,
- default_language: LanguageIdentifier
+ pub bundles: HashMap<LanguageIdentifier, TypedFluentBundle>,
+ pub default_language: LanguageIdentifier
}
impl Localiser {