diff options
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/discord/__init__.py b/discord/__init__.py new file mode 100644 index 00000000..d27da12e --- /dev/null +++ b/discord/__init__.py @@ -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 * |