2022-08-22 18:51:46 -06:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2023-01-10 20:23:47 -07:00
|
|
|
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
|
2022-08-22 19:11:00 -06:00
|
|
|
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
|
2022-08-22 18:51:46 -06:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ConfigMiddleware(appConfig config.Interface) gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
c.Set(pkg.ContextKeyTypeConfig, appConfig)
|
2022-08-22 18:51:46 -06:00
|
|
|
c.Next()
|
|
|
|
}
|
|
|
|
}
|