dep upgrade
This commit is contained in:
parent
7fd8f4a884
commit
2c11283b4b
11 changed files with 774 additions and 156 deletions
|
|
@ -1,7 +1,7 @@
|
|||
package handler
|
||||
|
||||
import (
|
||||
"github.com/flosch/pongo2/v5"
|
||||
"github.com/flosch/pongo2/v6"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
|
|
|
|||
10
ui/handler/middleware.go
Normal file
10
ui/handler/middleware.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package handler
|
||||
|
||||
import "github.com/gin-gonic/gin"
|
||||
|
||||
func Auth() gin.HandlerFunc {
|
||||
return func(cx *gin.Context) {
|
||||
|
||||
cx.Next()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue