This commit is contained in:
Tao Tien 2026-02-22 00:39:51 -08:00
parent d7b4221727
commit 222459f828
31 changed files with 870 additions and 135 deletions

View file

@ -142,3 +142,19 @@ impl<'ctx> LobbyIdUnique<'ctx> {
self.imp.find(col_val)
}
}
#[allow(non_camel_case_types)]
/// Extension trait for query builder access to the table `Lobby`.
///
/// Implemented for [`__sdk::QueryTableAccessor`].
pub trait lobbyQueryTableAccess {
#[allow(non_snake_case)]
/// Get a query builder for the table `Lobby`.
fn lobby(&self) -> __sdk::__query_builder::Table<Lobby>;
}
impl lobbyQueryTableAccess for __sdk::QueryTableAccessor {
fn lobby(&self) -> __sdk::__query_builder::Table<Lobby> {
__sdk::__query_builder::Table::new("lobby")
}
}