package middlewares import ( "github.com/gin-gonic/gin" ) func Signature() gin.HandlerFunc { return func(c *gin.Context) { c.Next() } }