This commit is contained in:
eric
2026-03-12 19:50:50 -05:00
parent ae575f1828
commit 90378502cf
18 changed files with 438 additions and 22 deletions

View File

@@ -24,7 +24,7 @@ class MemosSDK:
def create_user(
self,
user_id: str,
password: str = "123456",
password: str = "12345678",
) -> dict:
"""
创建 Memos 用户
@@ -72,7 +72,7 @@ class MemosSDK:
def create_user_by_username(
self,
username: str,
password: str = "123456",
password: str = "12345678",
) -> dict:
"""按用户名直接创建(用于 /create_user 接口)"""
if not self.enabled: