nidus-sync/html/config.go
Eli Ribble 7237f5f666
Some checks failed
/ golint (push) Failing after 3m50s
Move internal references to new source hosting
2026-05-19 15:33:57 +00:00

15 lines
273 B
Go

package html
import (
"source.gleipnir.technology/Gleipnir/nidus-sync/config"
)
type ContentConfig struct {
IsProductionEnvironment bool
}
func NewContentConfig() ContentConfig {
return ContentConfig{
IsProductionEnvironment: config.IsProductionEnvironment(),
}
}