Implement update execution and provider contract

This commit is contained in:
stoorps 2026-03-20 00:15:40 +00:00
parent 842c390260
commit d8eb7b3cab
Signed by: stoorps
SSH key fingerprint: SHA256:AZlPfu9hTu042EGtZElmDQoy+KvMOeShLDan/fYLoNI
16 changed files with 407 additions and 79 deletions

View file

@ -18,8 +18,7 @@ pub struct Cli {
impl Cli {
pub fn is_review_update_flow(&self) -> bool {
matches!(self.command, Some(Command::Update))
|| (self.command.is_none() && self.query.is_none())
self.command.is_none() && self.query.is_none()
}
}