4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-02 00:06:19 +00:00
Files
matterbridge/vendor/github.com/labstack/echo/v4/group_fs.go
2022-03-12 19:41:07 +01:00

10 lines
201 B
Go

//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)
}