mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-07 00:01:00 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
use std::sync::Arc;
|
|
|
|
pub struct State {}
|
|
|
|
impl State {
|
|
pub async fn load() -> anyhow::Result<Arc<State>> {
|
|
let state = State {};
|
|
|
|
Ok(state.into())
|
|
}
|
|
}
|