refactor(utils): 修复密码哈希比较逻辑错误 feat(user): 新增按状态筛选优惠券接口 docs: 添加虚拟发货与任务中心相关文档 fix(wechat): 修正Code2Session上下文传递问题 test: 补充订单折扣与积分转换测试用例 build: 更新配置文件与构建脚本 style: 清理多余的空行与注释
8 lines
260 B
Bash
Executable File
8 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
[ -n "$BASH_VERSION" ] || exec bash "$0" "$@"
|
|
set -euo pipefail
|
|
printf "\nRegenerating swagger doc\n\n"
|
|
go install github.com/swaggo/swag/cmd/swag@v1.16.2
|
|
time swag init --parseDependency --parseInternal --parseDepth 2
|
|
printf "\nDone.\n\n"
|