summaryrefslogtreecommitdiff
path: root/forgeConfig.config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-12 10:13:35 -0500
committerJeff Carr <[email protected]>2025-09-12 10:13:35 -0500
commit743130882305327f99e78e217f3f3321c321231e (patch)
tree3e6011a12b10f0979e5a44823568b9fcce9b6eb4 /forgeConfig.config.go
parentb77555e9fa26de747e4c2bcb99b077a994da6fbd (diff)
only let forge save the config files
Diffstat (limited to 'forgeConfig.config.go')
-rw-r--r--forgeConfig.config.go5
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