Yin Jie
Yin Jie
### What is the URL of the page with the issue? https://pkg.go.dev ### What is your user agent? Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0...
As a beginner, the GO default enviroment doesn't include the command go-assets-builder. We need to know how to install it.
main.go: ``` package main import ( "log" "net/http" "github.com/gin-gonic/autotls" "github.com/gin-gonic/gin" ) func main() { r := gin.Default() // Ping handler r.GET("/ping", func(c *gin.Context) { c.String(http.StatusOK, "pong") }) log.Fatal(autotls.Run(r, "example1.com", "example2.com"))...