summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-30 23:55:04 -0600
committerJeff Carr <[email protected]>2024-01-30 23:55:04 -0600
commit6d59e0f0f7db343b00748a98e19286994fcbf19f (patch)
treef539294e6a4ef8ac48f50ae3ac388573ec992cf8 /main.go
parentd18a8018cb95cd3218226639e6afa5b4e3f51af0 (diff)
more code cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/main.go b/main.go
index d71348b..f713448 100644
--- a/main.go
+++ b/main.go
@@ -3,7 +3,6 @@ package main
import (
"embed"
- "fmt"
"time"
"go.wit.com/log"
@@ -50,15 +49,15 @@ func main() {
return
}
i = 0
- duration := timeFunction(func() {
- scanGoSum()
+ timeFunction(func() {
+ // scanGoSum()
for _, repo := range me.allrepos {
repo.newScan()
}
})
/*
- s := fmt.Sprint(duration)
- me.autoWorkingPwd.SetText(s)
+ s := fmt.Sprint(duration)
+ me.autoWorkingPwd.SetText(s)
*/
})
}