prax_cli/
lib.rs

1//! Prax CLI - Command-line interface for the Prax ORM.
2//!
3//! This crate provides the CLI tool for managing Prax projects,
4//! including schema validation, code generation, and migrations.
5
6pub mod cli;
7pub mod commands;
8pub mod config;
9pub mod error;
10pub mod output;