2022-09-09 10:40:11 +00:00
|
|
|
"""
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2015-present Rapptz
|
|
|
|
Copyright (c) 2022-present M-307
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE."""
|
|
|
|
|
2022-08-13 06:46:33 +00:00
|
|
|
__title__ = 'enkanetwork.py'
|
2022-08-13 06:48:56 +00:00
|
|
|
__author__ = 'M-307'
|
2023-04-13 07:31:23 +00:00
|
|
|
__version__ = '1.4.3'
|
2022-08-13 06:46:33 +00:00
|
|
|
__license__ = 'MIT'
|
2022-08-13 06:47:46 +00:00
|
|
|
__copyright__ = 'Copyright 2022-present M-307'
|
2022-08-13 06:46:33 +00:00
|
|
|
|
2022-08-13 06:35:56 +00:00
|
|
|
|
2022-08-04 13:56:23 +00:00
|
|
|
from .client import *
|
|
|
|
from .exception import *
|
|
|
|
from .model import *
|
|
|
|
from .utils import *
|
|
|
|
from .cache import *
|
|
|
|
from .enum import *
|
2022-08-17 04:54:16 +00:00
|
|
|
from .assets import *
|