melisa/melisa/__init__.py

17 lines
453 B
Python
Raw Normal View History

2022-03-18 15:03:36 +03:00
# Copyright MelisaDev 2022 - Present
# Full MIT License can be found in `LICENSE.txt` at the project root.
2022-05-25 10:03:49 +03:00
from .client import Client, Bot
2022-04-07 19:33:55 +03:00
from .models import *
2022-03-18 15:03:36 +03:00
from .exceptions import *
2022-05-25 10:19:08 +03:00
from .rest import RESTApp
2022-05-28 12:19:18 +03:00
from .cache import CacheManager, AutoCacheModels
2022-03-18 15:03:36 +03:00
__package__ = "melisa"
__title__ = "Melisa"
2022-05-28 17:45:08 +03:00
__description__ = "Cache-optimized Discord microframework for Python 3"
2022-03-18 15:03:36 +03:00
__author__ = "MelisaDev"
__license__ = "MIT"
2022-05-28 17:45:08 +03:00
__version__ = '0.0.1.dev1'