Files
profiles-plugin/profiles/__init__.py

12 lines
171 B
Python

import logging
logger = logging.getLogger(__name__)
from .discord import setup
from .twitch import setup as twitch_setup
__all__ = (
'setup',
'twitch_setup',
)