mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-24 18:34:34 +01:00
18 lines
338 B
Rust
18 lines
338 B
Rust
pub mod database_tape;
|
|
pub mod errors;
|
|
pub mod types;
|
|
|
|
pub type Result<T> = std::result::Result<T, errors::Error>;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use tracing_subscriber::EnvFilter;
|
|
|
|
#[ctor::ctor]
|
|
fn init() {
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(EnvFilter::from_default_env())
|
|
.init();
|
|
}
|
|
}
|