diff --git a/config.py b/config.py index 4c00db7..fe04055 100644 --- a/config.py +++ b/config.py @@ -3,7 +3,7 @@ from __future__ import annotations import os from typing import TypedDict -from eloquent import DatabaseManager, Model +from eloquent import DatabaseManager, Model # type: ignore CONFIG: dict[str, DbConfig] = { 'mysql': { 'driver': 'mysql', 'host': 'localhost', diff --git a/consts.py b/consts.py index 1b2f16a..ca7f9a2 100644 --- a/consts.py +++ b/consts.py @@ -27,4 +27,8 @@ class QueryType (Enum): YOUTUBE_COMMENT = 1 BLUESKY_COMMENT = 2 YOUTUBE_SYSTEM = 3 - BLUESKY_SYSTEM = 3 + BLUESKY_SYSTEM = 4 + KIRIBAN = 5 + NICO_REPORT = 6 + SNACK_TIME = 7 + HOT_SPRING = 8 diff --git a/models.py b/models.py index a9fcb43..35eba28 100644 --- a/models.py +++ b/models.py @@ -2,7 +2,7 @@ from __future__ import annotations from datetime import datetime -from eloquent import Model +from eloquent import Model # type: ignore from .config import DB