()
| 32 | |
| 33 | |
| 34 | def cli(): |
| 35 | if graphscope is None: |
| 36 | sys.path.insert( |
| 37 | 0, os.path.join(os.path.dirname(os.path.realpath(__file__)), "commands") |
| 38 | ) |
| 39 | from dev import cli as dev_cli |
| 40 | |
| 41 | dev_cli() |
| 42 | |
| 43 | context = get_current_context() |
| 44 | # get the specified commands under the FLEX architecture |
| 45 | commands = get_command_collection(context) |
| 46 | # serve the command |
| 47 | commands() |
| 48 | |
| 49 | |
| 50 | if __name__ == "__main__": |
no test coverage detected