summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/structs.go b/structs.go
index 2f07955..9b3da7b 100644
--- a/structs.go
+++ b/structs.go
@@ -4,9 +4,7 @@
package main
import (
- "os"
"sync"
- "time"
"go.wit.com/lib/gui/prep"
"go.wit.com/lib/protobuf/forgepb"
@@ -18,7 +16,6 @@ var me *mainType
// this app's variables
type mainType struct {
once sync.Once // one-time initialized data
- start time.Time // what the app starts (used for timing automated runs)
sh *prep.Auto // more experiments for bash handling
forge *forgepb.Forge // your customized repo preferences and settings
machine *zoopb.Machine // your customized repo preferences and settings
@@ -38,11 +35,3 @@ func initMachine() {
me.machine, _ = zoopb.InitMachine()
}
}
-
-func initMain() {
- // autocomplete must be processed before there is anything sent to STDOUT or STDERR
- me.sh = prep.Bash3(&argv) // add support for bash autocomplete with go-arg
- me.homedir, _ = os.UserHomeDir() // store shortcut here todo: add better logic
- me.start = time.Now()
- dumpDebug() // tinkering
-}