16 lines
268 B
Go
16 lines
268 B
Go
|
|
package sync
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/Gleipnir-Technology/nidus-sync/config"
|
||
|
|
)
|
||
|
|
|
||
|
|
type contentConfig struct {
|
||
|
|
IsProductionEnvironment bool
|
||
|
|
}
|
||
|
|
|
||
|
|
func newContentConfig() contentConfig {
|
||
|
|
return contentConfig{
|
||
|
|
IsProductionEnvironment: config.IsProductionEnvironment(),
|
||
|
|
}
|
||
|
|
}
|