You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bowl_in/Sources/API/Gin Gonic/model/app.go

12 lines
122 B

package model
import (
"github.com/gin-gonic/gin"
)
var App *gin.Engine
func InitializeApp() {
App = gin.Default()
}