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

@@ -7,7 +7,6 @@ use config::{CalendarStoreConfig, TomlCalendarStoreConfig};
use rustical_api::configure_api;
use rustical_auth::AuthProvider;
use rustical_caldav::{configure_dav, configure_well_known};
use rustical_frontend::configure_frontend;
use rustical_store::toml_store::TomlCalendarStore;
use std::fs;
use std::sync::Arc;
@@ -55,10 +54,6 @@ async fn main() -> Result<()> {
.service(
web::scope("/api").configure(|cfg| configure_api(cfg, cal_store.clone().into())),
)
.service(
web::scope("/frontend")
.configure(|cfg| configure_frontend(cfg, cal_store.clone().into())),
)
})
.bind(("0.0.0.0", 4000))?
.run()