#!/usr/bin/python3 ''' Manage games. Install, remove, run them. Usage: gamechest install gamechest remove gamechest run --profile_id= ''' import docopt from gamechest.cliactions import install, remove, run def main(): args = docopt.docopt(__doc__) #print(args); raise SystemExit(0) if args['install']: install.install(args['']) elif args['remove']: remove.remove(args['']) elif args['run']: run.run(args[''], args['--profile_id']) if __name__ == "__main__": main()