diff --git a/src/wormhole/__main__.py b/src/wormhole/__main__.py new file mode 100644 index 0000000..a47f2e5 --- /dev/null +++ b/src/wormhole/__main__.py @@ -0,0 +1,8 @@ +if __name__ != "__main__": + raise ImportError('this module should not be imported') + + +from .cli import cli + + +cli.wormhole() diff --git a/src/wormhole/server/__main__.py b/src/wormhole/server/__main__.py new file mode 100644 index 0000000..a30e0b4 --- /dev/null +++ b/src/wormhole/server/__main__.py @@ -0,0 +1,8 @@ +if __name__ != "__main__": + raise ImportError('this module should not be imported') + + +from wormhole.server import cli + + +cli.server()