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