summaryrefslogtreecommitdiff
path: root/mod-bot/config.py.example
blob: 667cbe6703a02fc197210bc87118d2d2fb38b0e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from __future__ import annotations
from typing import Optional

SERVER: str = "irc.example.org"
PORT: int = 6667
NICK: bytes = b"nickname"
IDENT: bytes = b"ident"
GECOS: bytes = b"realname"
CHANNELS: list[bytes] = [b"#channel"]
ADMINS: list[bytes] = [b"*!good-person@exampke.org"]
PREFIX: bytes = b"^"

# If either LOGIN or PASSWORD is set to None, SASL PLAIN is disabled
LOGIN: Optional[bytes] = b"username"
PASSWORD: Optional[bytes] = b"password"