feat(auth): 添加完整的用户认证API项目
- 实现用户注册、登录、JWT令牌认证功能 - 集成Gin、GORM、Viper、Zap等框架 - 添加密码加密、数据库操作、中间件等完整功能 - 配置多环境支持、日志轮转、CORS处理 - 创建完整的项目结构和配置文件体系
This commit is contained in:
3
go基础语法/01hello-go/go.mod
Normal file
3
go基础语法/01hello-go/go.mod
Normal file
@@ -0,0 +1,3 @@
|
||||
module hello-go
|
||||
|
||||
go 1.22.2
|
||||
BIN
go基础语法/01hello-go/hello-go
Executable file
BIN
go基础语法/01hello-go/hello-go
Executable file
Binary file not shown.
7
go基础语法/01hello-go/main.go
Normal file
7
go基础语法/01hello-go/main.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, Go from Linux Mint!")
|
||||
}
|
||||
Reference in New Issue
Block a user