mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 02:12:13 +00:00
9 lines
311 B
Rust
9 lines
311 B
Rust
use crate::{bridge::TwonlyConfig, database::Database};
|
|
use std::sync::Arc;
|
|
|
|
pub(crate) struct TwonlyStandalone {
|
|
#[allow(dead_code)]
|
|
pub(crate) config: TwonlyConfig,
|
|
/// Because Rust is called from a different process it is safe to write to the twonly_db.
|
|
pub(crate) twonly_db: Arc<Database>,
|
|
}
|