cool-core 0.1.2

cool-admin Rust 核心库
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 服务模块
//!
//! 对应 TypeScript 版本的 `service/`

mod base;
mod mysql;
mod postgres;
mod sqlite;

pub use base::*;
pub use mysql::*;
pub use postgres::*;
pub use sqlite::*;