Nothing important here 👽

Former-commit-id: eb2034a1078829472365eeb65884824a1be014c3
This commit is contained in:
kataras 2017-06-05 03:35:44 +03:00
parent a2df3c9740
commit 40b9449ffd

View File

@ -38,6 +38,8 @@ const (
|_____|_| |_||___/ ` |_____|_| |_||___/ `
// Version is the current version number of the Iris Web framework. // Version is the current version number of the Iris Web framework.
//
// Look https://github.com/kataras/iris#where-can-i-find-older-versions for older versions.
Version = "7.0.0" Version = "7.0.0"
) )
@ -48,8 +50,8 @@ const (
// Conversion for router.MethodNone. // Conversion for router.MethodNone.
MethodNone = router.MethodNone MethodNone = router.MethodNone
// NoLayout to disable layout for a particular template file // NoLayout to disable layout for a particular template file
// Conversion for view.NoLayout // Conversion for view.NoLayout.
NoLayout = "iris.nolayout" NoLayout = view.NoLayout
) )
// Application is responsible to manage the state of the application. // Application is responsible to manage the state of the application.