github.com/goravel/framework@v1.13.9/facades/http.go (about) 1 package facades 2 3 import ( 4 "github.com/goravel/framework/contracts/http" 5 ) 6 7 func RateLimiter() http.RateLimiter { 8 return App().MakeRateLimiter() 9 } 10 11 func View() http.View { 12 return App().MakeView() 13 }