diff options
| author | Jeff Carr <[email protected]> | 2025-09-12 10:13:35 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-12 10:13:35 -0500 |
| commit | 743130882305327f99e78e217f3f3321c321231e (patch) | |
| tree | 3e6011a12b10f0979e5a44823568b9fcce9b6eb4 /forgeConfig.config.go | |
| parent | b77555e9fa26de747e4c2bcb99b077a994da6fbd (diff) | |
only let forge save the config files
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 |
