25 lines
430 B
Go
25 lines
430 B
Go
package main
|
|
|
|
import (
|
|
"go.wit.com/gui"
|
|
"go.wit.com/lib/protobuf/forgepb"
|
|
)
|
|
|
|
var me *autoType
|
|
|
|
// this app's variables
|
|
type autoType struct {
|
|
// allrepos map[string]*repo
|
|
myGui *gui.Node
|
|
|
|
// the window from the /lib/gui/gowit package
|
|
// lw *gadgets.BasicWindow
|
|
|
|
// our view of the repositories
|
|
// repos *repoWindow
|
|
// repoList *repolist.RepoList
|
|
|
|
// your customized repo preferences and settings
|
|
forge *forgepb.Forge
|
|
}
|