seaplane-cli 0.4.1

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

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

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

impl SeaplaneFlightTemplate {
    pub fn command() -> Command { Command::new("template") }
}

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