view salut.tac @ 0:d1bc50b64974

initial commit
author Goffi <goffi@goffi.org>
date Tue, 25 Feb 2014 22:22:18 +0100
parents
children
line wrap: on
line source

from twisted.application import service
from twisted.words.protocols.jabber import jid
from wokkel.component import Component

from salut import SalutGateway

application = service.Application("Salut directory")

xmppcomponent = Component("necton3.int", 5347, "salut.necton3.int", "pass")
# xmppcomponent.logTraffic = True
salut = SalutGateway()
salut.setHandlerParent(xmppcomponent)
xmppcomponent.setServiceParent(application)