kegani-cli 0.1.3

CLI tool for Kegani framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Internal crate — layered application code
//!
//! Structure: model/entity → dto → repository → logic → service
//! This crate is NOT exposed as a library; it's the private business logic layer.

pub mod model;
pub mod dto;
pub mod repository;
pub mod logic;
pub mod service;