15 lines
273 B
Go
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(),
|
|
}
|
|
}
|