8 lines
164 B
Rust
8 lines
164 B
Rust
use crate::db::Database;
|
|
use std::sync::Arc;
|
|
|
|
#[derive(Clone)]
|
|
pub struct MyDatabaseService {
|
|
pub db: Arc<Database>, // Use the Database struct from users.rs
|
|
}
|