16 lines
270 B
Python
16 lines
270 B
Python
"""
|
|
.. module:: Core
|
|
:synopsis: Core module of the bot
|
|
|
|
.. moduleauthor:: Dave Pedu <dave@davepedu.com>
|
|
|
|
.. automodule:: core.pyircbot
|
|
|
|
.. automodule:: core.rpc
|
|
|
|
"""
|
|
|
|
__all__ = ["PyIRCBot"]
|
|
|
|
from pyircbot.pyircbot import PyIRCBot
|
|
from pyircbot.irccore import IRCCore |