tahoe-lafs/src/allmydata/__main__.py
Brian Warner 77b3ab019d add __main__.py so "python -m allmydata" works
Thanks to dstufft for the suggestion. I know this can make it slightly
easier to run tahoe in some funny environments (where an appropriate
"python" is on your path but the generated "tahoe" executable is not).
2016-03-25 14:49:18 -07:00

7 lines
101 B
Python

import sys
from allmydata.scripts.runner import run
if __name__ == "__main__":
sys.exit(run())