Kuby/src/api/__init__.py

10 lines
216 B
Python
Raw Normal View History

"""
API module for Kuby Discord bot
Provides REST API endpoints for bot functionality
"""
from .app import APIManager
from .config import APIConfig, PARTNER_IDS
__all__ = ['APIManager', 'APIConfig', 'PARTNER_IDS']