Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 380 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 380 Bytes

Go

Script

# go.mod初始化
go mod init mygo
# 套件:單一安裝
go get github.com/gin-gonic/gin
go get github.com/jinzhu/gorm
# 套件:全部安裝
go mod download
# 套件:移除未使用
go mod tidy
# 看環境變數
go env
# 測試
go test ./...
# build
go build main.go
# 執行
./main

Features

  • restful/mvc/repository+service
  • graphql
  • jwt
  • test