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

12 lines
204 B
Python

import click
from kiwi_scp.commands.cli import KiwiCLI
@click.command(cls=KiwiCLI)
def main():
"""kiwi is the simple tool for managing container servers."""
if __name__ == "__main__":
main()