feat: add comprehensive GitHub workflow and development tools
This commit is contained in:
20
app/.venv/Lib/site-packages/psycopg/crdb/__init__.py
Normal file
20
app/.venv/Lib/site-packages/psycopg/crdb/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""
|
||||
CockroachDB support package.
|
||||
"""
|
||||
|
||||
# Copyright (C) 2022 The Psycopg Team
|
||||
|
||||
from . import _types
|
||||
from .connection import CrdbConnection, AsyncCrdbConnection, CrdbConnectionInfo
|
||||
|
||||
adapters = _types.adapters # exposed by the package
|
||||
connect = CrdbConnection.connect
|
||||
|
||||
_types.register_crdb_types(adapters.types)
|
||||
_types.register_crdb_adapters(adapters)
|
||||
|
||||
__all__ = [
|
||||
"AsyncCrdbConnection",
|
||||
"CrdbConnection",
|
||||
"CrdbConnectionInfo",
|
||||
]
|
||||
Reference in New Issue
Block a user