10 lines
216 B
Python
10 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']
|