alun-core 0.1.0

Alun framework core: app lifecycle, plugin system, error handling, unified response types
Documentation
1
2
3
4
5
6
7
8
//! alun-core:应用生命周期、插件系统、统一错误、API 类型
pub mod error;
pub mod plugin;
pub mod api;

pub use error::{Error, Result};
pub use plugin::{Plugin, PluginManager};
pub use api::{Res, ResResult, ApiError, PageData, PageQuery, codes};