15 lines
333 B
Go
15 lines
333 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/fastenhealth/fasten-onprem/backend/pkg"
|
|
"github.com/fastenhealth/fasten-onprem/backend/pkg/config"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func ConfigMiddleware(appConfig config.Interface) gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
c.Set(pkg.ContextKeyTypeConfig, appConfig)
|
|
c.Next()
|
|
}
|
|
}
|