#apigee microgateway config module
this module takes a source config yaml and and returns a merged config from the network
inorder to use its recommended you work in this order
- call the init function which will copy a source example and save to a target location
- call get to refresh the gateway data into the config, can be called after init
- call save to save any changes
- call load to load an existing config from disk
api looks like this
{
get:function(options,cb){
},
init:function(options, cb){
},
load:function(options){
},
save:function(config,target){
}
};