ipbl/vendor/github.com/labstack/echo/v4/group_fs.go

10 lines
201 B
Go
Raw Normal View History

2022-03-11 23:34:09 +01:00
//go:build !go1.16
// +build !go1.16
package echo
// Static implements `Echo#Static()` for sub-routes within the Group.
func (g *Group) Static(prefix, root string) {
g.static(prefix, root, g.GET)
}