mirror of
https://github.com/nushell/nushell.git
synced 2025-07-08 02:17:22 +02:00
8 lines
142 B
Rust
8 lines
142 B
Rust
use super::db_table::DbTable;
|
|
|
|
#[derive(Clone, PartialEq, Debug)]
|
|
pub struct DbSchema {
|
|
pub name: String,
|
|
pub tables: Vec<DbTable>,
|
|
}
|