1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 20:41:57 +00:00

move csrf middleware example

Former-commit-id: 5dbe3affead73a97b5313b9f7c00e88470aba24d
This commit is contained in:
kataras
2017-11-21 11:38:55 +02:00
parent 1a595d4ece
commit 8d659d3589
4 changed files with 12 additions and 12 deletions

View File

@@ -308,20 +308,20 @@ You can serve [quicktemplate](https://github.com/valyala/quicktemplate) files to
- [Recovery](miscellaneous/recover/main.go)
- [Profiling (pprof)](miscellaneous/pprof/main.go)
- [Internal Application File Logger](miscellaneous/file-logger/main.go)
- [Google reCAPTCHA](miscellaneous/recaptcha/main.go)
- [Cross-Site Request Forgery Protection](miscellaneous/csrf/main.go)
- [Google reCAPTCHA](miscellaneous/recaptcha/main.go)
### Experimental Handlers
* [Casbin wrapper](experimental-handlers/casbin/wrapper/main.go)
* [Casbin middleware](experimental-handlers/casbin/middleware/main.go)
* [Cloudwatch](experimental-handlers/cloudwatch/simple/main.go)
* [CORS](experimental-handlers/cors/simple/main.go)
* [JWT](experimental-handlers/jwt/main.go)
* [Newrelic](experimental-handlers/newrelic/simple/main.go)
* [Prometheus](experimental-handlers/prometheus/simple/main.go)
* [Secure](experimental-handlers/secure/simple/main.go)
* [Tollboothic](experimental-handlers/tollboothic/limit-handler/main.go)
- [Casbin wrapper](experimental-handlers/casbin/wrapper/main.go)
- [Casbin middleware](experimental-handlers/casbin/middleware/main.go)
- [Cloudwatch](experimental-handlers/cloudwatch/simple/main.go)
- [CORS](experimental-handlers/cors/simple/main.go)
- [JWT](experimental-handlers/jwt/main.go)
- [Newrelic](experimental-handlers/newrelic/simple/main.go)
- [Prometheus](experimental-handlers/prometheus/simple/main.go)
- [Secure](experimental-handlers/secure/simple/main.go)
- [Tollboothic](experimental-handlers/tollboothic/limit-handler/main.go)
- [Cross-Site Request Forgery Protection](experimental-handlers/csrf/main.go)
#### More