summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 03:36:31 -0500
committerJeff Carr <[email protected]>2025-09-11 03:36:31 -0500
commit8e67e31bbed9219d93e2f88aeec6040aaf10020f (patch)
tree1215f4d060e5764f746de6dcb5dd12e07da1a4ea /main.go
parentb3dc0e265e9d03de5c33d53f152d0bb9baa2a4d1 (diff)
new init & config()
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.go b/main.go
index f2702b0..68dda62 100644
--- a/main.go
+++ b/main.go
@@ -7,7 +7,10 @@ import (
// go will sit here until the window exits
func main() {
- forge := forgepb.Init()
+ // read in forge info
+ cfg := configInit()
+ forge := forgepb.InitFromConfig(cfg)
+
all := forge.Repos.SortByFullPath()
for all.Scan() {
check := all.Next()