clustvirt/router/errors.go
Matthew Stobbs 851ae7a77f implemented a router structure
- keep things localized a bit more
- fixes import cycle
2024-03-21 16:56:24 -06:00

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")