Restructured data to use gino instead of sqlalchemy.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2022-03-08 16:46:40 -05:00
parent 59c94c92de
commit 1aaedafbad
8 changed files with 2012 additions and 546 deletions

4
src/playlist/data/sql.py Normal file
View File

@@ -0,0 +1,4 @@
"""Contains the gino DB connection for the application."""
import gino
db = gino.Gino()