magic-wormhole/src/wormhole/__main__.py

8 lines
198 B
Python
Raw Normal View History

from __future__ import absolute_import, print_function, unicode_literals
from .cli import cli
2018-04-21 07:30:08 +00:00
if __name__ != "__main__":
raise ImportError('this module should not be imported')
cli.wormhole()