comparison src/__init__.py @ 385:910b8fbf4461

use the new install() function of sat_tmp
author Goffi <goffi@goffi.org>
date Wed, 16 Jan 2019 09:17:43 +0100
parents aa3a464df605
children 0fedfb5cd7c7
comparison
equal deleted inserted replaced
384:aa3a464df605 385:910b8fbf4461
54 SàT PubSub, a generic XMPP publish-subscribe service. 54 SàT PubSub, a generic XMPP publish-subscribe service.
55 """ 55 """
56 56
57 __version__ = '0.3.0' 57 __version__ = '0.3.0'
58 58
59 # TODO: remove this when RSM and MAM are in wokkel 59 # TODO: remove this when changes are merged in Wokkel
60 import wokkel 60 from sat_tmp.wokkel import install
61 from sat_tmp.wokkel import pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam 61 install()
62 wokkel.pubsub = tmp_pubsub
63 wokkel.rsm = tmp_rsm
64 wokkel.mam = tmp_mam