This commit is contained in:
DingZQ
2025-03-28 19:58:47 +08:00
parent e0b6183ff0
commit e90a7b205f
4 changed files with 75 additions and 1 deletions

View File

@@ -1269,4 +1269,11 @@ def get_all_scada_info(name: str) -> list[dict[str, Any]]:
############################################################
# 39 users
############################################################
def get_user_schema(name: str) -> dict[str, dict[str, Any]]:
return api.get_user_schema(name)
def get_user(name: str, user_name: str) -> dict[str, Any]:
return api.get_user(name, user_name=user_name)
def get_all_users(name: str) -> list[dict[str, Any]]:
return api.get_all_users(name)