This commit is contained in:
che
2026-07-23 12:06:08 +05:00
parent 4cfc5d6ae6
commit dddf6516d3
47 changed files with 2253 additions and 94 deletions
+25
View File
@@ -0,0 +1,25 @@
pub mod filters;
pub mod models;
pub mod serializers;
use che_tauri::{AppModule, ModuleContext};
pub fn module() -> FrcModule {
FrcModule
}
pub struct FrcModule;
impl AppModule for FrcModule {
fn name(&self) -> &'static str {
"frcapp"
}
fn init(&self, ctx: &mut ModuleContext) {
ctx.resource::<models::Frc>(
"frc",
serializers::frc_serializer(),
filters::frc_filterset(),
);
}
}