recipes/back_core/src/app_core/shared/app/context.rs

10 lines
135 B
Rust

use shaku::Interface;
use super::lang::Lang;
pub trait Context: Interface {
fn lang(&self) -> &Lang {
&self.lang
}
}