grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The `commands` module handles the execution of different modes in the Grimoire CSS system.
//!
//! This module provides functionality for initializing and executing different commands such as
//! building and initializing configurations. It serves as a command dispatcher, routing requests
//! based on the selected mode or action.

mod build;
pub(crate) mod fi;
pub mod handler;
mod init;
mod shorten;

pub use handler::*;