chromeworker/proxyserver/main.go

13 lines
144 B
Go
Raw Normal View History

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