(req: SetAppConfigRequest)
| 100 | |
| 101 | @server_api.post("/app_config") |
| 102 | async def set_app_config(req: SetAppConfigRequest): |
| 103 | return set_app_config_internal(req) |
| 104 | |
| 105 | @server_api.get("/get/{key:path}") |
| 106 | def read_web_data(key: str = None, scan_for_malicious: bool = True): |
nothing calls this directly
no test coverage detected