()
| 25 | |
| 26 | |
| 27 | def main(): |
| 28 | args = parse_args() |
| 29 | |
| 30 | if args.command == "install": |
| 31 | result = install_pack(args.pack, args.force) |
| 32 | if result: |
| 33 | print("Installation completed") |
| 34 | else: |
| 35 | print("Installation failed") |
| 36 | |
| 37 | if args.command == "search": |
| 38 | print_search(args.query) |
| 39 | |
| 40 | |
| 41 | if __name__ == "__main__": |
no test coverage detected