summaryrefslogtreecommitdiff
path: root/structs.go
blob: 7ab78ee7ee3c4824dd71216953b6bea09695422e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}