1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

add experimental handlers examples

Former-commit-id: 8d8a0d15afce2554dc5926f6b9bd9c42cb95dad0
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-08-16 16:57:03 +03:00
parent db433f7dca
commit a7635afe62
21 changed files with 644 additions and 2 deletions

View File

@@ -4,5 +4,9 @@ package httptest
import "github.com/gavv/httpexpect"
// Request type alias.
type Request = httpexpect.Request
type (
// Request type alias.
Request = httpexpect.Request
// Expect type alias.
Expect = httpexpect.Expect
)