from config.config_types import factory import config.config_types as c_t import config from mod_base import BasePython class Logging(BasePython): def __init__(self, client): super().__init__(client) self.config.register("log_channel", factory(c_t.discord_types.Channel, client)) def __dispatch__(self, event, *args, **kwargs): pass __main_class__ = Logging