#73 begin implement keycloak
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 47s

This commit is contained in:
Tim
2024-08-25 21:52:35 +02:00
parent 886214aad0
commit f826718c03
13 changed files with 223 additions and 79 deletions

11
middleware/gzip.go Normal file
View File

@@ -0,0 +1,11 @@
package middleware
import (
"net/http"
"github.com/NYTimes/gziphandler"
)
func Gzip(next http.Handler) http.Handler {
return gziphandler.GzipHandler(next)
}