I don't think the 'dc' config should be a first-class citizen in this module, or a strict requirement. Instead, we should be able to provide multiple paths, if you need to load up some host-specific config: ``` javascript var config = fetchConfig(__dirname, '/etc/datacenter', '/etc/my-app', /* ... */, { }); // Probably not the final interface... just something to think about. ```
I don't think the 'dc' config should be a first-class citizen in this module, or a strict requirement.
Instead, we should be able to provide multiple paths, if you need to load up some host-specific config: