7 lines
150 B
Rust
7 lines
150 B
Rust
// src/pages/admin_panel/add_table/nav.rs
|
|
|
|
use anyhow::Result;
|
|
use tokio::sync::mpsc;
|
|
|
|
pub type SaveTableResultSender = mpsc::Sender<Result<String>>;
|