seaplane-cli 0.4.1

The Seaplane Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Command;

use crate::{cli::CliCommand, error::Result, Ctx};

#[derive(Copy, Clone, Debug)]
pub struct SeaplaneFormationTemplate;

impl SeaplaneFormationTemplate {
    pub fn command() -> Command {
        Command::new("template").about("Generate a template skeleton of a Formation")
    }
}

impl CliCommand for SeaplaneFormationTemplate {
    fn run(&self, _ctx: &mut Ctx) -> Result<()> { todo!("impl SeaplaneFormationTemplate::run") }
}