-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25e281a
commit ed6eb9a
Showing
7 changed files
with
53 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
nonebot_plugin_tetris_stats/games/tetrio/api/schemas/summaries/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
from .achievements import Achievements, AchievementsSuccessModel | ||
from .league import LeagueSuccessModel | ||
from .solo import Solo, SoloSuccessModel | ||
from .zen import Zen, ZenSuccessModel | ||
from .zenith import Zenith, ZenithEx, ZenithSuccessModel | ||
|
||
SummariesModel = AchievementsSuccessModel | SoloSuccessModel | ZenSuccessModel | ZenithSuccessModel | ||
SummariesModel = AchievementsSuccessModel | SoloSuccessModel | ZenSuccessModel | LeagueSuccessModel | ZenithSuccessModel | ||
|
||
__all__ = [ | ||
'Achievements', | ||
'AchievementsSuccessModel', | ||
'LeagueSuccessModel', | ||
'Solo', | ||
'SoloSuccessModel', | ||
'SummariesModel', | ||
'Zen', | ||
'ZenSuccessModel', | ||
'Zenith', | ||
'ZenithEx', | ||
'ZenithSuccessModel', | ||
'SummariesModel', | ||
'ZenSuccessModel', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = 'nonebot-plugin-tetris-stats' | ||
version = '1.4.8' | ||
version = '1.4.9' | ||
description = '一款基于 NoneBot2 的用于查询 Tetris 相关游戏数据的插件' | ||
authors = ['scdhh <[email protected]>'] | ||
readme = 'README.md' | ||
|