grimoire_css 1.9.0

A magical CSS engine for all environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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(crate) mod transmute;

pub use handler::*;
pub(crate) use init::init as init_project;
pub(crate) use shorten::shorten as shorten_project;