Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dreamsxin/gin-demo


https://github.com/dreamsxin/gin-demo

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

## cobra cli

### 初始化

```shell
cobra-cli init --viper --author "[email protected]" --license "Apache-2.0"
```

### 创建 init 命令

```shell
cobra-cli add serve
```

## GORM

```shell
go install gorm.io/gen/tools/gentool@latest
```

### 从数据库生成代码

```shell
gentool -dsn "root:123456@tcp(localhost:3306)/hello?charset=utf8mb4&parseTime=True&loc=Local" -tables "user" -outPath "./modules/hello/query" -outFile "query.go" -onlyModel -modelPkgName "models"
```