1 2 3 4 5 6 7 8 9 10
use super::prelude::*; #[async_trait] impl CliSubcommand for Upgrade { async fn run(self: Box<Self>) { cmd!("cargo install supabase-plus") .run() .expect("Something went wrong running cargo install"); } }