-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74e8793
commit 184bc79
Showing
5 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# | ||
# | ||
|
||
from Command import * | ||
from .Command import * | ||
|
||
class CommandAlive(Command): | ||
@staticmethod | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# | ||
# | ||
|
||
from Command import * | ||
from .Command import * | ||
import tabulate | ||
import re | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from .Bot import Bot | ||
from .BackgroundTask import BackgroundTask | ||
from .BackgroundTaskManager import BackgroundTaskManager | ||
from .ChatRoom import ChatRoom | ||
from .Chatcommunicate import Chatcommunicate | ||
from .Command import Command | ||
from .CommandAlive import CommandAlive | ||
from .CommandListRunningCommands import CommandListRunningCommands | ||
from .CommandManager import CommandManager | ||
#from .CommandPrivilegeUser import CommandPrivilegeUser | ||
from .CommandStop import CommandStop | ||
from .PrivilegeType import PrivilegeType | ||
from .PrivilegedChatUser import PrivilegedChatUser | ||
from . import Utilities |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .Source/Bot import Bot | ||
""" | ||
The Botpy package | ||
""" |