mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
dfaaff949b
Signed-off-by: Vishal Rana <vr@labstack.com>
37 lines
712 B
Go
37 lines
712 B
Go
// +build !appengine
|
|
|
|
package fasthttp
|
|
|
|
import "github.com/valyala/fasthttp"
|
|
|
|
type (
|
|
// URL implements `engine.URL`.
|
|
URL struct {
|
|
*fasthttp.URI
|
|
}
|
|
)
|
|
|
|
// Path implements `engine.URL#Path` method.
|
|
func (u *URL) Path() string {
|
|
return string(u.URI.Path())
|
|
}
|
|
|
|
// SetPath implements `engine.URL#SetPath` method.
|
|
func (u *URL) SetPath(path string) {
|
|
u.URI.SetPath(path)
|
|
}
|
|
|
|
// QueryValue implements `engine.URL#QueryValue` method.
|
|
func (u *URL) QueryValue(name string) string {
|
|
return string(u.QueryArgs().Peek(name))
|
|
}
|
|
|
|
// QueryString implements `engine.URL#QueryString` method.
|
|
func (u *URL) QueryString() string {
|
|
return string(u.URI.QueryString())
|
|
}
|
|
|
|
func (u *URL) reset(uri *fasthttp.URI) {
|
|
u.URI = uri
|
|
}
|