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

13 lines
204 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():
2021-11-03 00:12:32 +00:00
"""kiwi is the simple tool for managing container servers."""
2021-10-12 17:17:28 +00:00
2021-10-11 00:58:49 +00:00
if __name__ == "__main__":
main()