ortho_config 0.9.0

A configuration management library for Rust, inspired by esbuild.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Test case exercising multi-field subcommand docs tuple variants.

use ortho_config::OrthoConfigSubcommandDocs;

struct Args;

#[derive(OrthoConfigSubcommandDocs)]
enum Commands {
    Run(Args, Args),
}

fn main() {}