forky_cli 0.2.0

Rust Utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;
use forky_fs::prelude::*;

pub struct StyleCommand;

impl Subcommand for StyleCommand {
	fn name(&self) -> &'static str { "style" }
	fn about(&self) -> &'static str { "Generate types for styles" }

	fn subcommands(&self) -> Vec<Box<dyn Subcommand>> {
		vec![Box::new(StyleCommandAll), Box::new(StyleCommandFile)]
	}
}