Fix path to match package name

This commit is contained in:
Luke Murphy
2020-08-13 20:51:43 +02:00
parent 99dd1f4cd7
commit c04b1d8e03
4 changed files with 2 additions and 2 deletions

1
hyper_rpc/__init__.py Normal file
View File

@ -0,0 +1 @@
"""hrpc module."""

6
hyper_rpc/cli.py Normal file
View File

@ -0,0 +1,6 @@
"""User friendly command-line interface for hrpc generation."""
def main():
"""Command-line entrypoint."""
print("hello from hrpc.cli:main")

6
hyper_rpc/plugin.py Normal file
View File

@ -0,0 +1,6 @@
"""Protoc plugin for hrpc client/server generation."""
def main():
"""Command-line entrypoint."""
print("hello from hrpc.plugin:main")