(obj jsonconfig.Obj)
| 27 | func (c *Config) Export_Obj() jsonconfig.Obj { return c.jconf } |
| 28 | |
| 29 | func ExportNewConfigFromObj(obj jsonconfig.Obj) *Config { |
| 30 | return &Config{jconf: obj} |
| 31 | } |
| 32 | |
| 33 | func SetTempDirFunc(f func() string) { |
| 34 | tempDir = f |
no outgoing calls
no test coverage detected