xtask/es/
minifier.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use anyhow::Result;
use clap::{Args, Subcommand};

#[derive(Debug, Args)]
pub(super) struct MinifierCmd {
    #[clap(subcommand)]
    cmd: Cmd,
}

impl MinifierCmd {
    pub fn run(self) -> Result<()> {
        match self.cmd {}
    }
}

#[derive(Debug, Subcommand)]
enum Cmd {}