mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 21:34:48 -04:00
10 lines
221 B
Python
10 lines
221 B
Python
from httppusher import HttpPusher
|
|
|
|
PUSHER_TYPES = {
|
|
'http': HttpPusher
|
|
}
|
|
|
|
|
|
def create_pusher(hs, pusherdict):
|
|
if pusherdict['kind'] in PUSHER_TYPES:
|
|
return PUSHER_TYPES[pusherdict['kind']](hs, pusherdict)
|