You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
255 B
Python

"""
Utilities for the bot.
"""
from dataclasses import (
dataclass,
field
)
RoomAlias = str
RoomId = str
@dataclass
class Room:
""" Class representing a room.
"""
id: RoomId
aliases: set[RoomAlias] = field(default_factory=set)