build(user): 移除 godotenv 依赖

- 从 user 服务的 go.mod 文件中删除了 github.com/joho/godotenv
- 相应地从 go.sum 文件中移除了 godotenv 的特定版本信息
This commit is contained in:
2025-01-21 23:27:39 +08:00
parent 5c31af55db
commit 85d297aeaa
4 changed files with 151 additions and 3 deletions
+6
View File
@@ -14,3 +14,9 @@ gen-auth:
.PHONY: gen-facade
gen-facade:
@cd app/facade && cwgo server --type HTTP --server_name facade --module ${ROOT_MOD}/app/facade -I ../../idl --idl ../../idl/facade/facade.proto
.PHONY: tidy
tidy:
@cd app/auth && go mod tidy
@cd app/user && go mod tidy
@cd app/facade && go mod tidy