mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-10-31 18:18:00 +00:00
18 lines
351 B
Python
18 lines
351 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""Console script for gnpy."""
|
|
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
def main(args=None):
|
|
"""Console script for gnpy."""
|
|
click.echo("Replace this message by putting your code into "
|
|
"gnpy.cli.main")
|
|
click.echo("See click documentation at http://click.pocoo.org/")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|