diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 13:45:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 13:45:42 -0600 |
| commit | 37f59a9e48591c93299d66136bc95d52dc81bb04 (patch) | |
| tree | 45f25bf7d9aae296fb1f26494c990bd007267607 /main.go | |
| parent | b414d5ed4ba03993c3cc578d7f3b4d881250d14f (diff) | |
code reorg
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -30,6 +30,11 @@ func main() { autotypistWindow() repoworld() + for _, repo := range me.allrepos { + repo.status.Update() + repo.newScan() + } + // scan repos every 30 seconds // check every second for the checkbox changing var i int = 60 @@ -126,10 +131,9 @@ func autotypistWindow() { box := win.NewBox("bw hbox", true) globalDisplayOptions(box) - globalBuildOptions(box) - globalTestingOptions(box) - globalResetOptions(box) - + // globalBuildOptions(box) + // globalTestingOptions(box) + // globalResetOptions(box) } // This creates a window |
