mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* Create custom context class * Documentation * Remove old help method, replace with new * Update from rebase
9 lines
208 B
Python
9 lines
208 B
Python
import pkg_resources
|
|
|
|
from .config import Config
|
|
from .context import RedContext
|
|
|
|
__all__ = ["Config", "RedContext", "__version__"]
|
|
|
|
__version__ = version = pkg_resources.require("Red-DiscordBot")[0].version
|