extras/iro.tac
author Sandro Knauß <knauss@netzguerilla.net>
Tue, 21 Aug 2012 13:21:32 +0200
branchdevel
changeset 292 f4212d230f54
parent 286 ec5a280707f3
child 294 0e75bd39767d
permissions -rw-r--r--
not needed anymore

from twisted.application.service import Application

from iro import iro

def get_application():
    app = Application("Iro")
    cfg={"config":"iro.conf"}
    iro.makeService(cfg).setServiceParent(app)
    return app

application = get_application()