标签:icon 静态 more http pre favicon route set outer
func main() { router := gin.Default() // 静态文件目录 router.Static("/assets", "./assets") // router.StaticFS("/more_static", http.Dir("my_file_system")) // 静态文件 router.StaticFile("/favicon.ico", "./resources/favicon.ico") // Listen and serve on 0.0.0.0:8080 router.Run(":8080") }
标签:icon 静态 more http pre favicon route set outer
原文地址:https://www.cnblogs.com/yzg-14/p/13144637.html