Remove frontend crate

This commit is contained in:
Lennart
2023-10-06 14:17:15 +02:00
parent 72ae41361e
commit e17e4facd7
4 changed files with 0 additions and 94 deletions

View File

@@ -1,10 +0,0 @@
use actix_web::{
web::{self, Data},
HttpResponse,
};
use rustical_store::calendar::CalendarStore;
use tokio::sync::RwLock;
pub fn configure_frontend<C: CalendarStore>(cfg: &mut web::ServiceConfig, store: Data<RwLock<C>>) {
cfg.app_data(store);
}