Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
package context
|
|
|
|
|
2021-01-31 20:24:15 +01:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/kataras/iris/v12/core/netutil"
|
|
|
|
)
|
2020-04-20 09:43:45 +02:00
|
|
|
|
2017-06-10 02:56:42 +02:00
|
|
|
// ConfigurationReadOnly can be implemented
|
|
|
|
// by Configuration, it's being used inside the Context.
|
|
|
|
// All methods that it contains should be "safe" to be called by the context
|
|
|
|
// at "serve time". A configuration field may be missing when it's not
|
|
|
|
// safe or its useless to be called from a request handler.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
type ConfigurationReadOnly interface {
|
|
|
|
// GetVHost returns the non-exported vhost config field.
|
|
|
|
GetVHost() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetLogLevel returns the LogLevel field.
|
2020-05-08 02:55:54 +02:00
|
|
|
GetLogLevel() string
|
2020-06-26 19:29:36 +02:00
|
|
|
// GetSocketSharding returns the SocketSharding field.
|
|
|
|
GetSocketSharding() bool
|
2021-01-31 20:24:15 +01:00
|
|
|
// GetKeepAlive returns the KeepAlive field.
|
|
|
|
GetKeepAlive() time.Duration
|
2022-07-15 04:56:16 +02:00
|
|
|
// GetTimeout returns the Timeout field.
|
2021-12-09 13:44:03 +01:00
|
|
|
GetTimeout() time.Duration
|
2022-07-15 04:56:16 +02:00
|
|
|
// GetTimeoutMessage returns the TimeoutMessage field.
|
2021-12-09 13:44:03 +01:00
|
|
|
GetTimeoutMessage() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetDisablePathCorrection returns the DisablePathCorrection field
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetDisablePathCorrection() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetDisablePathCorrectionRedirection returns the DisablePathCorrectionRedirection field.
|
2018-11-09 02:03:48 +01:00
|
|
|
GetDisablePathCorrectionRedirection() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetEnablePathIntelligence returns the EnablePathIntelligence field.
|
2020-05-17 07:10:07 +02:00
|
|
|
GetEnablePathIntelligence() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetEnablePathEscape returns the EnablePathEscape field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetEnablePathEscape() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetForceLowercaseRouting returns the ForceLowercaseRouting field.
|
2020-04-25 01:30:19 +02:00
|
|
|
GetForceLowercaseRouting() bool
|
2023-08-04 16:59:00 +02:00
|
|
|
// GetEnableOptimizations returns the EnableDynamicHandler field.
|
|
|
|
GetEnableDynamicHandler() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetFireMethodNotAllowed returns the FireMethodNotAllowed field.
|
2020-05-17 07:10:07 +02:00
|
|
|
GetFireMethodNotAllowed() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetDisableAutoFireStatusCode returns the DisableAutoFireStatusCode field.
|
2020-06-08 04:16:55 +02:00
|
|
|
GetDisableAutoFireStatusCode() bool
|
2022-07-15 04:56:16 +02:00
|
|
|
// GetResetOnFireErrorCode returns the ResetOnFireErrorCode field.
|
2020-06-08 04:16:55 +02:00
|
|
|
GetResetOnFireErrorCode() bool
|
2022-11-29 09:49:49 +01:00
|
|
|
// GetURLParamSeparator returns URLParamSeparator field.
|
|
|
|
GetURLParamSeparator() *string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetEnableOptimizations returns the EnableOptimizations field.
|
2017-07-22 21:57:20 +02:00
|
|
|
GetEnableOptimizations() bool
|
2022-04-13 00:00:53 +02:00
|
|
|
// GetEnableProtoJSON returns the EnableProtoJSON field.
|
|
|
|
GetEnableProtoJSON() bool
|
|
|
|
// GetEnableEasyJSON returns the EnableEasyJSON field.
|
|
|
|
GetEnableEasyJSON() bool
|
|
|
|
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetDisableBodyConsumptionOnUnmarshal returns the DisableBodyConsumptionOnUnmarshal field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetDisableBodyConsumptionOnUnmarshal() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetFireEmptyFormError returns the FireEmptyFormError field.
|
2020-05-19 08:28:27 +02:00
|
|
|
GetFireEmptyFormError() bool
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetTimeFormat returns the TimeFormat field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetTimeFormat() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetCharset returns the Charset field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetCharset() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetPostMaxMemory returns the PostMaxMemory field.
|
2017-12-27 19:42:46 +01:00
|
|
|
GetPostMaxMemory() int64
|
|
|
|
|
2022-07-15 04:56:16 +02:00
|
|
|
// GetLocaleContextKey returns the LocaleContextKey field.
|
2019-12-13 22:06:18 +01:00
|
|
|
GetLocaleContextKey() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetLanguageContextKey returns the LanguageContextKey field.
|
2020-05-04 18:13:06 +02:00
|
|
|
GetLanguageContextKey() string
|
2020-08-18 07:05:51 +02:00
|
|
|
// GetLanguageInputContextKey returns the LanguageInputContextKey field.
|
|
|
|
GetLanguageInputContextKey() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetVersionContextKey returns the VersionContextKey field.
|
2020-05-06 06:17:24 +02:00
|
|
|
GetVersionContextKey() string
|
2021-01-06 00:52:39 +01:00
|
|
|
// GetVersionAliasesContextKey returns the VersionAliasesContextKey field.
|
|
|
|
GetVersionAliasesContextKey() string
|
2020-08-05 18:34:55 +02:00
|
|
|
|
|
|
|
// GetViewEngineContextKey returns the ViewEngineContextKey field.
|
|
|
|
GetViewEngineContextKey() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetViewLayoutContextKey returns the ViewLayoutContextKey field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetViewLayoutContextKey() string
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetViewDataContextKey returns the ViewDataContextKey field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetViewDataContextKey() string
|
2021-01-24 13:08:37 +01:00
|
|
|
// GetFallbackViewContextKey returns the FallbackViewContextKey field.
|
|
|
|
GetFallbackViewContextKey() string
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetRemoteAddrHeaders returns RemoteAddrHeaders field.
|
2020-07-26 13:37:30 +02:00
|
|
|
GetRemoteAddrHeaders() []string
|
|
|
|
// GetRemoteAddrHeadersForce returns RemoteAddrHeadersForce field.
|
|
|
|
GetRemoteAddrHeadersForce() bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetRemoteAddrPrivateSubnets returns the RemoteAddrPrivateSubnets field.
|
2020-04-20 09:43:45 +02:00
|
|
|
GetRemoteAddrPrivateSubnets() []netutil.IPRange
|
2020-06-11 15:08:35 +02:00
|
|
|
// GetSSLProxyHeaders returns the SSLProxyHeaders field.
|
|
|
|
GetSSLProxyHeaders() map[string]string
|
2020-06-11 17:52:35 +02:00
|
|
|
// GetHostProxyHeaders returns the HostProxyHeaders field.
|
|
|
|
GetHostProxyHeaders() map[string]bool
|
2020-06-11 15:27:38 +02:00
|
|
|
// GetOther returns the Other field.
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
GetOther() map[string]interface{}
|
|
|
|
}
|