supabase-plus 0.2.0

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
use crate::cli::{CliSubcommand, StopAny};

use async_trait::*;

#[async_trait]
impl CliSubcommand for StopAny {
    async fn run(self: Box<Self>) {
        cmd!("cargo install supabase-plus").run().unwrap();
    }
}