AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
shipping.py
根目录
/
benchmarks
/
verification-stress
/
tasks
/
vs-neg-reqid-logging
/
workdir
/
shipping.py
1
import logging
2
3
log = logging.getLogger("shipping")
4
5
def dispatch(order, request_id):
6
log.info("dispatching %s", order["id"])
7
return {"ok": True}
8
8 lines
PYTHON