"""teesql-example — connect to a teesql cluster from Python in a TEE. The package exposes: - Settings: pydantic-settings model for the cluster identity + creds. - connect: a context-manager helper that wraps psycopg-ra-tls's connect_via_manifest, returning a psycopg connection ready for use. - migrate: idempotent schema bootstrap. - events: domain CRUD over the example `events` table. The entry point for operators is the click CLI in `cli.py`, exposed as the `teesql-example` console script (see pyproject.toml). """ from __future__ import annotations __version__ = "0.1.0"