quantum_log 0.3.0

High-performance asynchronous logging framework based on tracing ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 数据库 Sink 模块
//!
//! 此模块提供了将日志写入各种数据库的功能,支持 SQLite、MySQL 和 PostgreSQL。

pub mod models;
pub mod schema;
pub mod sink;

pub use models::*;
pub use schema::*;
pub use sink::DatabaseSink;