mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-11 00:01:21 +00:00
18 lines
344 B
Rust
18 lines
344 B
Rust
use monitor_client::{
|
|
api::execute::RunSync,
|
|
entities::{update::Update, user::User},
|
|
};
|
|
use resolver_api::Resolve;
|
|
|
|
use crate::state::State;
|
|
|
|
impl Resolve<RunSync, (User, Update)> for State {
|
|
async fn resolve(
|
|
&self,
|
|
RunSync { sync }: RunSync,
|
|
(user, update): (User, Update),
|
|
) -> anyhow::Result<Update> {
|
|
todo!()
|
|
}
|
|
}
|