Mercurial > salut
view salut.tac @ 1:92549e4336a6
2015 copyright dates update
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 30 Mar 2015 10:30:54 +0200 |
parents | d1bc50b64974 |
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)