Refactoring

This commit is contained in:
Lennart
2024-11-06 15:57:10 +01:00
parent ae4d5f0fc6
commit c21993ab15
17 changed files with 85 additions and 128 deletions

View File

@@ -0,0 +1,11 @@
use actix_web::{web, App};
use rustical_carddav::configure_dav;
#[actix_web::test]
async fn test_asd() {
let app = App::new().service(web::scope("/carddav").configure(
|config| configure_dav(config, auth_provider, store)
));
let app = actix_web::test::init_service()
assert!(false);
}