1use anyhow::Result;
23use crate::commands::Run;
45/// Move to the bottom of the stack: check out the branch just above the
6/// trunk.
7#[derive(Debug, clap::Args)]
8pub struct Bottom {}
910impl Run for Bottom {
11fn run(self) -> Result<()> {
12crate::stack::checkout_bottom()
13 }
14}