supabase-plus 0.2.3

An extra set of tools for managing Supabase projects going beyond the possibilities of regular Supabase CLI
1
2
3
4
5
6
7
8
9
10
11
12
use crate::cli::{CliSubcommand, Upgrade};

use async_trait::*;

#[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");
    }
}