mstmdev
mstmdev
> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...
```go package main import ( "net/http" "github.com/gin-gonic/gin" "github.com/thinkerou/favicon" ) func main() { r := gin.Default() r.Use(favicon.New("./favicon.ico")) // set favicon middleware r.NoRoute(func(c *gin.Context) { c.String(http.StatusNotFound, "not found") }) r.GET("/ping", func(c *gin.Context)...