melisa/melisa/__init__.py
grey-cat-1908 722b76dee9 setup.py
2022-05-28 17:45:08 +03:00

16 lines
453 B
Python

# Copyright MelisaDev 2022 - Present
# Full MIT License can be found in `LICENSE.txt` at the project root.
from .client import Client, Bot
from .models import *
from .exceptions import *
from .rest import RESTApp
from .cache import CacheManager, AutoCacheModels
__package__ = "melisa"
__title__ = "Melisa"
__description__ = "Cache-optimized Discord microframework for Python 3"
__author__ = "MelisaDev"
__license__ = "MIT"
__version__ = '0.0.1.dev1'