axum-sql-viewer 0.1.5

A development tool for viewing SQL tables in web browsers, easily integrable as an Axum layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Database abstraction layer
//!
//! This module provides a database-agnostic interface for schema discovery
//! and data retrieval.

pub mod traits;

#[cfg(feature = "sqlite")]
pub mod sqlite;

#[cfg(feature = "postgres")]
pub mod postgres;

// Re-export the main trait
pub use traits::DatabaseProvider;