build: 修改依赖并引入外部库

This commit is contained in:
2026-03-27 19:31:40 +08:00
parent 230a76fe27
commit f7c072dd0b
12 changed files with 1915 additions and 216 deletions
+15
View File
@@ -0,0 +1,15 @@
from enum import IntEnum
class Rating(IntEnum):
"""
Enum representing the four possible ratings when reviewing a card.
"""
Again = 1
Hard = 2
Good = 3
Easy = 4
__all__ = ["Rating"]