1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 21:03:00 +00:00
kiwi-scp/kiwi_scp/scripts/kiwi_next.py

16 lines
231 B
Python
Raw Normal View History

import click
2021-10-11 00:58:49 +00:00
from kiwi_scp.commands.cli import KiwiCLI
@click.command(cls=KiwiCLI)
def main():
"""main entry point for command line interface"""
2021-10-11 00:58:49 +00:00
click.echo("Hello main")
pass
2021-10-12 17:17:28 +00:00
2021-10-11 00:58:49 +00:00
if __name__ == "__main__":
main()