mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 13:57:51 +00:00
11 lines
223 B
Python
11 lines
223 B
Python
# -*- python -*-
|
|
|
|
from allmydata import client
|
|
from twisted.application import service
|
|
|
|
queen_pburl = ""
|
|
c = client.Client(queen_pburl)
|
|
|
|
application = service.Application("allmydata_client")
|
|
c.setServiceParent(application)
|