10 lines
270 B
Plaintext
10 lines
270 B
Plaintext
id = params_kw.get('id', '')
|
|
if not id: return {"success": False, "message": "id required"}
|
|
|
|
db = DBPools()
|
|
dbname = get_module_dbname('reallife_asset')
|
|
async with db.sqlorContext(dbname) as sor:
|
|
await sor.D("rl_vendor_config", {"id": id})
|
|
|
|
return {"success": True}
|