lmrc-cli 0.3.16

CLI tool for scaffolding LMRC Stack infrastructure projects
Documentation
//! Example CRUD feature
//!
//! This is a complete example showing how to implement CRUD operations
//! using hexagonal architecture (Ports & Adapters pattern).
//!
//! ## Structure
//!
//! - `models.rs` - Domain models (core business entities)
//! - `repository.rs` - Database adapter (outbound port)
//! - `service.rs` - Business logic (application core)
//! - `handler.rs` - HTTP handlers (inbound adapter)
//!
//! ## Usage
//!
//! This example demonstrates:
//! - Creating domain models with validation
//! - Implementing repository pattern with SeaORM
//! - Writing business logic in service layer
//! - Building RESTful HTTP endpoints
//! - Error handling across all layers
//!
//! Use this as a template for your own features!

pub mod handler;
pub mod models;
pub mod repository;
pub mod service;