7 lines
154 B
Go
7 lines
154 B
Go
|
package router
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// Errors uses by the router module and it's sub modules
|
||
|
var ErrMethodNotExist = errors.New("http method doesn't exist")
|