Initial commit
This commit is contained in:
26
discord/__init__.py
Normal file
26
discord/__init__.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
Discord API Wrapper
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
A basic wrapper for the Discord API.
|
||||
|
||||
:copyright: (c) 2015 Rapptz
|
||||
:license: MIT, see LICENSE for more details.
|
||||
|
||||
"""
|
||||
|
||||
__title__ = 'discord'
|
||||
__author__ = 'Rapptz'
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright 2015 Rapptz'
|
||||
__version__ = '0.1.0'
|
||||
__build__ = 0x001000
|
||||
|
||||
from client import Client
|
||||
from user import User
|
||||
from channel import Channel, PrivateChannel
|
||||
from server import Server
|
||||
from message import Message
|
||||
from errors import *
|
||||
Reference in New Issue
Block a user