fiesta 0.1.0

fiesta - a simple binary for creating new projects with rust, htmx, tailwindcss, actix, and sqlx
Documentation
1
2
3
4
5
6
7
use crate::input::options::Input;
use color_eyre::Result;

pub fn create_project(options: &Input) -> Result<()> {
    println!("{options:?}");
    Ok(())
}