blob: b0d3f9d9b3c30057d3c9c9f077fa783ab60833c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package main
import (
"github.com/gin-gonic/gin"
// "net/http"
)
func main() {
myRouter := gin.New()
// myRouter.Use(gin.Logger())
myRouter.Static("/app", "./app")
myRouter.Run(":8080")
}
|