13 lines
144 B
Go
Raw Normal View History

2020-11-16 19:04:53 +08:00
package main
2020-11-20 18:24:42 +08:00
import (
"github.com/gin-gonic/gin"
)
2020-11-16 19:04:53 +08:00
var engine = gin.New()
2020-11-16 19:04:53 +08:00
func main() {
2020-11-20 18:24:42 +08:00
initChromeProxy()
engine.Run(config.Server.URI)
2020-11-16 19:04:53 +08:00
}