xtask/es/
minifier.rs

1use anyhow::Result;
2use clap::{Args, Subcommand};
3
4#[derive(Debug, Args)]
5pub(super) struct MinifierCmd {
6    #[clap(subcommand)]
7    cmd: Cmd,
8}
9
10impl MinifierCmd {
11    pub fn run(self) -> Result<()> {
12        match self.cmd {}
13    }
14}
15
16#[derive(Debug, Subcommand)]
17enum Cmd {}