mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
16 lines
364 B
Python
16 lines
364 B
Python
"""
|
|
Boticord API Wrapper
|
|
~~~~~~~~~~~~~~~~~~~
|
|
A basic wrapper for the BotiCord API.
|
|
:copyright: (c) 2023 Marakarka
|
|
:license: MIT, see LICENSE for more details.
|
|
"""
|
|
|
|
__title__ = "boticordpy"
|
|
__author__ = "Marakarka"
|
|
__license__ = "MIT"
|
|
__copyright__ = "Copyright 2021 - 2023 Marakarka"
|
|
__version__ = "3.0.0a"
|
|
|
|
from .client import BoticordClient
|
|
from .types import *
|