remove pub access from bookmark connection

This commit is contained in:
yggverse 2024-11-14 10:53:30 +02:00
parent fb8f9904d0
commit ffeaad91f3

View File

@ -10,7 +10,7 @@ pub struct Table {
}
pub struct Database {
pub connection: Rc<RwLock<Connection>>,
connection: Rc<RwLock<Connection>>,
profile_id: i64, // multi-profile relationship @TODO
}