use crate::sidecar::SidecarHandle; use std::sync::Arc; pub struct AppState { pub sidecar: Arc, } impl AppState { pub fn new() -> Self { Self { sidecar: SidecarHandle::new(), } } } impl Default for AppState { fn default() -> Self { Self::new() } }