| 34 | /// Shared application state, wrapped in Arc for axum handlers. |
| 35 | #[derive(Clone)] |
| 36 | pub struct AppState { |
| 37 | pub inner: Arc<AppStateInner>, |
| 38 | } |
| 39 | |
| 40 | pub struct AppStateInner { |
| 41 | pub projects: DashMap<PathBuf, Arc<Project>>, |
nothing calls this directly
no outgoing calls
no test coverage detected