mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-10 04:41:10 +00:00
8 lines
264 B
Python
8 lines
264 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
CREDS_FILE = (Path(os.path.dirname(os.path.realpath(__file__))) / "credentials.json").resolve()
|
|
HOMESERVER = "https://matrix.altau.su"
|
|
USER_ID = "@alertbot:altau.su"
|
|
DEVICE_NAME = "lego"
|
|
ROOM_ID = "!lheAkNnuTYwITzBxiW:altau.su"
|