(self, context_id: str|None)
| 132 | return projects.activate_project(context_id, name) |
| 133 | |
| 134 | def deactivate_project(self, context_id: str|None): |
| 135 | if not context_id: |
| 136 | raise Exception("Context ID is required") |
| 137 | return projects.deactivate_project(context_id) |
| 138 | |
| 139 | def get_file_structure(self, name: str|None, settings: dict|None): |
| 140 | if not name: |
no outgoing calls
no test coverage detected