Split core handlers into its own (broken) class.
This commit is contained in:
parent
c1be52847b
commit
34d110e643
1 changed files with 1267 additions and 1262 deletions
|
@ -46,6 +46,11 @@ try:
|
|||
except ImportError:
|
||||
PYGMENTS = False
|
||||
|
||||
|
||||
class HandlerCore:
|
||||
def __init__(self, core):
|
||||
self.core = core
|
||||
|
||||
def _join_initial_rooms(self, bookmarks):
|
||||
"""Join all rooms given in the iterator `bookmarks`"""
|
||||
for bm in bookmarks:
|
||||
|
|
Loading…
Reference in a new issue