aerich/alice/utils.py
2020-05-14 18:46:17 +08:00

12 lines
244 B
Python

from tortoise import Tortoise
def get_app_connection(config, app):
"""
get tortoise app
:param config:
:param app:
:return:
"""
return Tortoise.get_connection(config.get("apps").get(app).get("default_connection"))