7 lines
186 B
Plaintext
7 lines
186 B
Plaintext
ns = dict(params_kw or {})
|
|
for k in list(ns.keys()):
|
|
if k.endswith("_text"):
|
|
ns.pop(k, None)
|
|
result = await create_world(ns)
|
|
return {"success": True, "id": result.get("id")}
|