20 lines
540 B
Go
20 lines
540 B
Go
package main
|
|
|
|
import (
|
|
"go.wit.com/dev/alexflint/arg"
|
|
"go.wit.com/lib/gui/prep"
|
|
"go.wit.com/lib/protobuf/gitpb"
|
|
)
|
|
|
|
var me *mainType
|
|
|
|
// this app's variables
|
|
type mainType struct {
|
|
pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
|
|
goSrc string // path to ~/go/src or go.work file
|
|
goPath string // the goPath to use for the package
|
|
hasWork bool // true if using go.work file
|
|
repo *gitpb.Repo // this is the repo we are in
|
|
myGui *prep.GuiPrep // the gui toolkit handle
|
|
}
|