1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-09 01:15:54 +02:00

Object method to Header and URL

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-02-20 14:04:09 -08:00
parent c8725ae244
commit 979d64941f
5 changed files with 22 additions and 0 deletions

View File

@ -48,6 +48,7 @@ type (
Del(string)
Get(string) string
Set(string, string)
Object() interface{}
}
URL interface {
@ -56,6 +57,7 @@ type (
Path() string
Host() string
QueryValue(string) string
Object() interface{}
}
Config struct {