1use anyhow::Result;
23use crate::commands::Run;
45/// Move down the stack: check out the current branch's parent.
6#[derive(Debug, clap::Args)]
7pub struct Down {}
89impl Run for Down {
10fn run(self) -> Result<()> {
11crate::stack::checkout_parent()
12 }
13}