mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-29 08:27:55 +00:00
7 lines
222 B
Python
7 lines
222 B
Python
from signals import *
|
|
from handlers import *
|
|
from models import GroupMessage, MessageReply
|
|
|
|
grpmsg_added.connect(grpmsg_added_cb, sender=GroupMessage)
|
|
grpmsg_reply_added.connect(grpmsg_reply_added_cb, sender=MessageReply)
|