-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pyrofork: Move pyromod's client bound methods to its own class
Signed-off-by: wulan17 <wulan17@nusantararom.org>
- Loading branch information
Showing
13 changed files
with
406 additions
and
303 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
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,25 @@ | ||
|
||
from .ask import Ask | ||
from .get_listener_matching_with_data import GetListenerMatchingWithData | ||
from .get_listener_matching_with_identifier_pattern import GetListenerMatchingWithIdentifierPattern | ||
from .get_many_listeners_matching_with_data import GetManyListenersMatchingWithData | ||
from .get_many_listeners_matching_with_identifier_pattern import GetManyListenersMatchingWithIdentifierPattern | ||
from .listen import Listen | ||
from .register_next_step_handler import RegisterNextStepHandler | ||
from .remove_listerner import RemoveListener | ||
from .stop_listener import StopListener | ||
from .stop_listening import StopListening | ||
|
||
class Pyromod( | ||
Ask, | ||
GetListenerMatchingWithData, | ||
GetListenerMatchingWithIdentifierPattern, | ||
GetManyListenersMatchingWithData, | ||
GetManyListenersMatchingWithIdentifierPattern, | ||
Listen, | ||
RegisterNextStepHandler, | ||
RemoveListener, | ||
StopListener, | ||
StopListening | ||
): | ||
pass |
Oops, something went wrong.