mirror of
https://github.com/Matthww/TuneBot.git
synced 2026-09-21 21:27:48 +00:00
8 lines
217 B
Python
8 lines
217 B
Python
import sqlalchemy as sa
|
|
from .autojoin import table as autojoin
|
|
from typing import Dict
|
|
|
|
|
|
def get_tables(metadata: sa.MetaData) -> Dict[str, sa.Table]:
|
|
return {name: table for name, table in [autojoin(metadata)]}
|