diff options
Diffstat (limited to 'forgeConfig.config.go')
| -rw-r--r-- | forgeConfig.config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/forgeConfig.config.go b/forgeConfig.config.go index 6c3c237..8916329 100644 --- a/forgeConfig.config.go +++ b/forgeConfig.config.go @@ -4,6 +4,7 @@ package forgepb import ( "go.wit.com/lib/config" + "go.wit.com/log" ) // functions to import and export the protobuf @@ -24,6 +25,10 @@ func (cfg *ForgeConfigs) ConfigSave() error { return config.ConfigSaveWithHeader(cfg, header) } +func (cfg *ForgeConfigs) DumpENV() { + log.Info("todo: DumpENV()") +} + // load the ~/.config/forge/ files func (c *ForgeConfigs) ConfigLoad(fullpath string) error { return nil |
