mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-25 01:49:41 +00:00
10 lines
171 B
Python
10 lines
171 B
Python
|
from dataclasses import dataclass
|
||
|
from typing import ClassVar
|
||
|
|
||
|
from module.ocr.keyword import Keyword
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class DailyQuest(Keyword):
|
||
|
instances: ClassVar = {}
|