summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 03:36:47 -0500
committerJeff Carr <[email protected]>2025-09-11 03:36:47 -0500
commitb984a53aac6b90e69d9d8dbf04ca12cce2cc498f (patch)
tree5834535b20342dc7e2868a0dbb0a722a2fa5f3cd /config.go
parentc8d67da4cc92d707db4d9d78920f40755fadae71 (diff)
new init() and config()
Diffstat (limited to 'config.go')
-rw-r--r--config.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/config.go b/config.go
new file mode 100644
index 0000000..24f047a
--- /dev/null
+++ b/config.go
@@ -0,0 +1,19 @@
+package main
+
+import (
+ "go.wit.com/lib/config"
+ "go.wit.com/lib/protobuf/forgepb"
+ "go.wit.com/log"
+)
+
+// sent via -ldflags
+
+func configInit() *forgepb.ForgeConfigs {
+ configs := new(forgepb.ForgeConfigs)
+ err := config.ConfigLoad(configs, "forge", "forge")
+ if err != nil {
+ log.Info("This tool requires your repos be scanned by forge first")
+ badExit(err)
+ }
+ return configs
+}