Support to clean all projects

This commit is contained in:
WQY\qiong
2023-03-22 19:24:50 +08:00
parent f2bd39a35a
commit d8dff0118b
3 changed files with 21 additions and 1 deletions

View File

@@ -170,6 +170,9 @@ def create_project(name: str) -> None:
def delete_project(name: str) -> None:
return api.delete_project(name)
def clean_project(excluded: list[str] = []) -> None:
return api.clean_project(excluded)
def is_project_open(name: str) -> bool:
return api.is_project_open(name)