# README
Sqreen's Application Security Management for Go
After performance monitoring (APM), error and log monitoring it’s time to add a security component into your app. Sqreen’s microagent automatically monitors sensitive app’s routines, blocks attacks and reports actionable infos to your dashboard.
Gin middleware function
This package provides Sqreen's middleware function for Gin to monitor and protect requests Gin receives. Simply setup the middleware function to have your requests monitored and protected by Sqreen.
Usage:
router := gin.Default()
// Setup Sqreen's middleware
router.Use(sqgin.Middleware())
// Every router endpoint is now automatically monitored and protected by Sqreen
router.GET("/", func(c *gin.Context) {
c.Status(http.StatusOK)
}
Find more details on how to setup Sqreen for Go at https://docs.sqreen.com/go/installation/
# Functions
Middleware is Sqreen's middleware function for Gin to monitor and protect the requests Gin receives.