18 lines
354 B
Python
18 lines
354 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""Console script for bot_z."""
|
||
|
|
||
|
import click
|
||
|
|
||
|
|
||
|
@click.command()
|
||
|
def main(args=None):
|
||
|
"""Console script for bot_z."""
|
||
|
click.echo("Replace this message by putting your code into "
|
||
|
"bot_z.cli.main")
|
||
|
click.echo("See click documentation at http://click.pocoo.org/")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|