violet/target/route.go

18 lines
202 B
Go
Raw Normal View History

package target
import (
"net/http"
)
type Route struct {
Pre bool
Host string
Port int
Path string
Abs bool
}
func (r Route) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
// pass
}