blob: 0a1ce4a9492edd5567a7214711b32e5e54aa1cf6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
//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)
}
|