source:
trunk/src/allmydata/introducer/__init__.py
Last change on this file was 1cfe843d, checked in by Alexandre Detiste <alexandre.detiste@…>, at 2024-02-22T23:40:25Z | |
---|---|
|
|
File size: 382 bytes |
Line | |
---|---|
1 | """ |
2 | Ported to Python 3. |
3 | """ |
4 | |
5 | from allmydata.introducer.server import create_introducer |
6 | |
7 | # apparently need to support "old .tac files" that may have |
8 | # "allmydata.introducer.IntroducerNode" burned in -- don't use this in |
9 | # new code |
10 | from allmydata.introducer.server import _IntroducerNode as IntroducerNode |
11 | |
12 | # hush pyflakes |
13 | __all__ = ( |
14 | "create_introducer", |
15 | "IntroducerNode", |
16 | ) |
Note: See TracBrowser
for help on using the repository browser.