2017-12-25 19:57:04 +01:00
|
|
|
// +build go1.9
|
|
|
|
|
|
|
|
package mvc
|
|
|
|
|
2019-10-25 00:27:02 +02:00
|
|
|
import "github.com/kataras/iris/v12/hero"
|
2017-12-25 19:57:04 +01:00
|
|
|
|
|
|
|
type (
|
|
|
|
|
|
|
|
// Result is a type alias for the `hero#Result`, useful for output controller's methods.
|
|
|
|
Result = hero.Result
|
|
|
|
// Response is a type alias for the `hero#Response`, useful for output controller's methods.
|
|
|
|
Response = hero.Response
|
|
|
|
// View is a type alias for the `hero#View`, useful for output controller's methods.
|
|
|
|
View = hero.View
|
|
|
|
)
|
|
|
|
|
2019-08-17 09:06:20 +02:00
|
|
|
// Try is a type alias for the `hero#Try`,
|
|
|
|
// useful to return a result based on two cases: failure(including panics) and a succeess.
|
|
|
|
var Try = hero.Try
|