-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
39 lines (31 loc) · 919 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"github.com/arashi87/gin-template/pkg/common"
"github.com/arashi87/gin-template/pkg/model"
"github.com/arashi87/gin-template/pkg/router"
"github.com/arashi87/gin-template/pkg/setting"
)
func DBAutoMigrate() {
common.DB.AutoMigrate(&model.UserModel{})
common.Logger.Info("Auto migrate database")
}
// @title gin template
// @version 1.0
// @description a simple RESTful API service implement by gin
// @termsOfService http://swagger.io/terms/
// @contact.name arashi87
// @contact.url http://www.swagger.io/support
// @contact.email [email protected]
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
// schemes http
func main() {
// init
common.InitDatabase()
common.InitLogger()
// migrate models
DBAutoMigrate()
router := router.InitRouter()
router.Run(setting.CONFIG.Address + ":" + setting.CONFIG.Port)
}