Let client know project open count

This commit is contained in:
wqy
2022-09-18 00:38:25 +08:00
parent a65b9b1cc5
commit 9454870d5c
3 changed files with 9 additions and 1 deletions

View File

@@ -50,6 +50,9 @@ def delete_project(name: str) -> None:
def is_project_open(name: str) -> bool:
return api.is_project_open(name)
def get_project_open_count(name: str) -> int:
return api.get_project_open_count(name)
def open_project(name: str) -> None:
return api.open_project(name)