10 lines
201 B
Go
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)
|
||
|
}
|