mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
15 lines
231 B
Python
15 lines
231 B
Python
import click
|
|
|
|
from kiwi_scp.commands.cli import KiwiCLI
|
|
|
|
|
|
@click.command(cls=KiwiCLI)
|
|
def main():
|
|
"""main entry point for command line interface"""
|
|
|
|
click.echo("Hello main")
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|