mirror of
https://github.com/MuXiu1997/traefik-github-oauth-plugin
synced 2025-12-17 18:31:27 +00:00
15 lines
281 B
Go
15 lines
281 B
Go
package router
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
server "github.com/MuXiu1997/traefik-github-oauth-plugin/internal/app/traefik-github-oauth-server"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func healthCheck(_ *server.App) gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
c.Status(http.StatusOK)
|
|
}
|
|
}
|