pub mod example {
use ::gelx::exports as __g;
pub async fn query(
client: &__g::gel_tokio::Client,
) -> ::core::result::Result<Output, __g::gel_errors::Error> {
client.query_required_single(QUERY, &()).await
}
pub async fn transaction(
conn: &mut __g::gel_tokio::Transaction,
) -> ::core::result::Result<Output, __g::gel_errors::Error> {
conn.query_required_single(QUERY, &()).await
}
pub type Input = ();
pub type Output = __g::Geometry;
pub const QUERY: &str = "select ext::postgis::makepoint(1.0, 1.0)";
}
fn main() {}