You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package rest
|
|
|
|
// great, these are needed to do the structural typing for the tests...
|
|
type HttpReq interface {
|
|
FormValue(key string) string
|
|
}
|
|
type HttpHeader interface {
|
|
Get(key string) string
|
|
}
|