sbe-cli 0.1.0

sbe schema tool to facilitate working with SBE schema files and generating codes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::path::PathBuf;

use anyhow::Result;
use clap::{command, Parser};

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct ValidateArgs {
	/// schema file to validate
	#[arg(long, short)]
	pub file: PathBuf,
}

pub fn run(_args: ValidateArgs) -> Result<()> {
	Ok(())
}