mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-19 06:00:18 +00:00
refactor!: sqlalchemy database models
This commit is contained in:
parent
2204338a5e
commit
b78040a795
@ -11,8 +11,10 @@ from arcaea_offline.external.exports import (
|
|||||||
ScoreExport,
|
ScoreExport,
|
||||||
exporters,
|
exporters,
|
||||||
)
|
)
|
||||||
from arcaea_offline.models.config import ConfigBase, Property
|
from arcaea_offline.singleton import Singleton
|
||||||
from arcaea_offline.models.scores import (
|
|
||||||
|
from .models.v4.config import ConfigBase, Property
|
||||||
|
from .models.v4.scores import (
|
||||||
CalculatedPotential,
|
CalculatedPotential,
|
||||||
Score,
|
Score,
|
||||||
ScoreBest,
|
ScoreBest,
|
||||||
@ -20,7 +22,7 @@ from arcaea_offline.models.scores import (
|
|||||||
ScoresBase,
|
ScoresBase,
|
||||||
ScoresViewBase,
|
ScoresViewBase,
|
||||||
)
|
)
|
||||||
from arcaea_offline.models.songs import (
|
from .models.v4.songs import (
|
||||||
Chart,
|
Chart,
|
||||||
ChartInfo,
|
ChartInfo,
|
||||||
Difficulty,
|
Difficulty,
|
||||||
@ -32,7 +34,6 @@ from arcaea_offline.models.songs import (
|
|||||||
SongsBase,
|
SongsBase,
|
||||||
SongsViewBase,
|
SongsViewBase,
|
||||||
)
|
)
|
||||||
from arcaea_offline.singleton import Singleton
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
0
src/arcaea_offline/database/models/__init__.py
Normal file
0
src/arcaea_offline/database/models/__init__.py
Normal file
Loading…
x
Reference in New Issue
Block a user