ircrobots/ircrobots/contexts.py

7 lines
126 B
Python
Raw Permalink Normal View History

from dataclasses import dataclass
from .interface import IServer
@dataclass
class ServerContext(object):
server: IServer