MCPcopy Create free account
hub / github.com/JaredStewart/coderlm / AppState

Class AppState

server/src/server/state.rs:36–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected