refactor!: sqlalchemy database models

This commit is contained in:
2024-04-02 22:15:21 +08:00
parent 2204338a5e
commit b78040a795
7 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,21 @@
from .config import ConfigBase, Property
from .scores import (
CalculatedPotential,
Score,
ScoreBest,
ScoreCalculated,
ScoresBase,
ScoresViewBase,
)
from .songs import (
Chart,
ChartInfo,
Difficulty,
DifficultyLocalized,
Pack,
PackLocalized,
Song,
SongLocalized,
SongsBase,
SongsViewBase,
)