"""Postgres连接器"""

from sqlalchemy import Column
from sqlalchemy.dialects.postgresql import JSONB


class PGSQL:
    """Postgres连接器"""

    def __init__(self, db_url: str):
        pass