1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- Package iris implements the highest realistic performance, easy to learn Go web framework.
- Iris provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.
- Low-level handlers compatible with `net/http` and high-level fastest MVC implementation and handlers dependency injection.
- Easy to learn for new gophers and advanced features for experienced, it goes as far as you dive into it!
- Source code and other details for the project are available at GitHub:
- https://github.com/kataras/iris
- # Current Version
- 12.2.10
- # Installation
- The only requirement is the Go Programming Language, at least version 1.21.
- $ go get github.com/kataras/iris/v12@latest
- Wiki:
- https://www.iris-go.com/#ebookDonateForm
- Examples:
- https://github.com/kataras/iris/tree/main/_examples
- Middleware:
- https://github.com/kataras/iris/tree/main/middleware
- https://github.com/iris-contrib/middleware
- Home Page:
- https://iris-go.com
- */
- package iris
|