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
//! Test case exercising unit subcommand docs variants.

use ortho_config::OrthoConfigSubcommandDocs;

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

fn main() {}