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

20 lines
257 B
Python
Raw Normal View History

2020-08-04 14:52:30 +00:00
#!/usr/bin/env python3
2020-08-06 11:43:45 +00:00
import kiwi
from kiwi.cmd_init import InitSubCommand
2020-08-04 14:52:30 +00:00
def main():
2020-08-06 11:43:45 +00:00
isc = InitSubCommand()
isc.setup()
2020-08-04 14:52:30 +00:00
2020-08-06 11:43:45 +00:00
args = kiwi.Parser.get_args()
2020-08-04 18:24:19 +00:00
print(args.command)
2020-08-04 14:52:30 +00:00
2020-08-06 11:43:45 +00:00
isc.run()
2020-08-04 14:52:30 +00:00
pass
if __name__ == "__main__":
main()