mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
feat: Implement dispatch encryption
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
# sdkserver/models/granter_login_body.py
|
||||
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class GranterLoginBodyData(BaseModel):
|
||||
uid: str
|
||||
guest: bool
|
||||
token: str
|
||||
|
||||
|
||||
class GranterLoginBody(BaseModel):
|
||||
app_id: int
|
||||
channel_id: int
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# sdkserver/models/risky_check.py
|
||||
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class DataScheme(BaseModel):
|
||||
id: str
|
||||
action: str
|
||||
geetest: Optional[object]
|
||||
|
||||
|
||||
class RiskyCheck(BaseModel):
|
||||
retcode: int
|
||||
message: str
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class ShieldVerifyBody(BaseModel):
|
||||
token: str
|
||||
uid: str
|
||||
uid: str
|
||||
|
||||
Reference in New Issue
Block a user