This commit is contained in:
Tao Tien 2026-02-22 00:39:51 -08:00
parent d7b4221727
commit 2d3993452b
33 changed files with 920 additions and 143 deletions

View file

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