2026-03-03 17:08:58 +00:00
|
|
|
package html
|
|
|
|
|
|
|
|
|
|
import (
|
2026-05-19 15:33:57 +00:00
|
|
|
"source.gleipnir.technology/Gleipnir/nidus-sync/config"
|
2026-03-03 17:08:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type ContentConfig struct {
|
|
|
|
|
IsProductionEnvironment bool
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewContentConfig() ContentConfig {
|
|
|
|
|
return ContentConfig{
|
|
|
|
|
IsProductionEnvironment: config.IsProductionEnvironment(),
|
|
|
|
|
}
|
|
|
|
|
}
|