Kuby/src/api/__init__.py

9 lines
216 B
Python

"""
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']