1 2 3 4 5 6 7
use std::sync::Arc; use crate::filesystem_http_route_index::FilesystemHttpRouteIndex; pub struct AppData { pub filesystem_http_route_index: Arc<FilesystemHttpRouteIndex>, }