mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
27 lines
637 B
Python
Executable File
27 lines
637 B
Python
Executable File
#!/usr/local/bin/python3
|
|
|
|
from argparse import ArgumentParser
|
|
from application_info import *
|
|
import json
|
|
import os
|
|
|
|
def main():
|
|
parser = ArgumentParser(prog='mynode-manage-apps')
|
|
action_choices = (
|
|
'init',
|
|
'createfolders',
|
|
)
|
|
parser.add_argument('action', help='action to manage mynode application', nargs='?', choices=action_choices)
|
|
args = parser.parse_args()
|
|
|
|
if args.action == "createbasefolders":
|
|
print("createbasefolders - not needed?")
|
|
elif args.action == "init":
|
|
init_dynamic_apps()
|
|
else:
|
|
print("UNKNOWN BASE ACTION")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|