diff --git a/core/src/state.rs b/core/src/state.rs index 41b03e47e..03915955e 100644 --- a/core/src/state.rs +++ b/core/src/state.rs @@ -1,10 +1,10 @@ use std::sync::Arc; -pub struct AppState {} +pub struct State {} -impl AppState { - pub async fn load() -> anyhow::Result> { - let state = AppState {}; +impl State { + pub async fn load() -> anyhow::Result> { + let state = State {}; Ok(state.into()) }