fasten-onprem/backend/pkg/web/middleware/config.go

15 lines
345 B
Go
Raw Normal View History

2022-08-22 18:51:46 -06:00
package middleware
import (
"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) {
c.Set(pkg.ContextKeyTypeConfig, appConfig)
2022-08-22 18:51:46 -06:00
c.Next()
}
}