blob: 3c9b1d8b41e87aafb094570dde017c929975d8fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Service composition for bitmask-core.
# Run as: twistd -n -y bitmaskd.tac
#
from twisted.application import service
from leap.bitmask.core.service import BitmaskBackend
bb = BitmaskBackend()
application = service.Application("bitmaskd")
bb.setServiceParent(application)
|