summaryrefslogtreecommitdiffstats
path: root/intl/l10n/rust/l10nregistry-rs/src/env.rs
blob: 7cd1ff30f4ec9c614489ee803511f987cc0047b7 (plain)
1
2
3
4
5
use crate::errors::L10nRegistryError;

pub trait ErrorReporter {
    fn report_errors(&self, errors: Vec<L10nRegistryError>);
}