kegani-cli 0.1.3

CLI tool for Kegani framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! {{PROJECT_NAME}} library
//!
//! Organized as: controller → service → logic → repository → model
//! Run `keg gen api <name>` to add new resources.

pub mod error;
pub mod routes;
pub mod controller;
pub mod middleware;

pub use error::{AppError, AppResult};