mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-25 17:42:25 +01:00
9 lines
141 B
Go
9 lines
141 B
Go
package middlewares
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func AuthorizationMiddleware() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
}
|
|
}
|