/** * Snowflake Postgres client implementation. * * Snowflake Postgres uses the same API contract and execution behavior as the * PostgreSQL integration in sdk-api, so this client delegates to the same base * implementation. */ import { PostgresClientImpl } from "../postgres/client.js"; import type { SnowflakePostgresClient } from "./types.js"; export class SnowflakePostgresClientImpl extends PostgresClientImpl implements SnowflakePostgresClient {}