BotZ/bot_z/cli.py

17 lines
339 B
Python
Raw Normal View History

2019-01-07 11:16:16 +01:00
# -*- coding: utf-8 -*-
"""Console script for bot_z."""
import click
@click.command()
def main(args=None):
"""Console script for bot_z."""
2019-09-04 14:56:36 +02:00
click.echo("Replace this message by putting your code into " "bot_z.cli.main")
2019-01-07 11:16:16 +01:00
click.echo("See click documentation at http://click.pocoo.org/")
if __name__ == "__main__":
main()