初学gin
```
package main
import (
"github.com/gin-gonic/gin"
)
func main() {
router := gin.Default()
router.Static("/", "../templates")
router.GET("/", func(c *gin.Context) {
})
router.Run(":9000")
}
```
运行时```panic: path segment '/' conflicts with existing wildcard '/*filepath' in path '/'```报错
求大神赐教~~
有疑问加站长微信联系(非本文作者)