diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2024-02-20 00:56:00 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2024-02-20 00:56:00 +0300 |
commit | 95ac1f0d6786d6f4331cfc8387ef816c1db24618 (patch) | |
tree | 67e9c963ae7686eb46c75699b31ccd5385bacf77 /include/py/homekit/database/bots.py | |
parent | 952e41d59412f5aad5898d0bccb3af800d104f24 (diff) |
comletely delete old lws, rewrite vk_sms_checker on python
Diffstat (limited to 'include/py/homekit/database/bots.py')
-rw-r--r-- | include/py/homekit/database/bots.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/py/homekit/database/bots.py b/include/py/homekit/database/bots.py index fb5f326..fae8fb6 100644 --- a/include/py/homekit/database/bots.py +++ b/include/py/homekit/database/bots.py @@ -1,6 +1,6 @@ import pytz -from .mysql import mysql_now, MySQLDatabase, datetime_fmt +from .mysql import mysql_now, MySQLDatabase, datetime_fmt, MySQLCredsConfig, MySQLCloudCredsConfig from ..api.types import ( SoundSensorLocation ) @@ -26,6 +26,9 @@ class OpenwrtLogRecord: class BotsDatabase(MySQLDatabase): + def creds(self) -> MySQLCredsConfig: + return MySQLCloudCredsConfig() + def add_openwrt_logs(self, lines: List[Tuple[datetime, str]], access_point: int): |