summaryrefslogtreecommitdiff
path: root/structs.go
blob: fdcae67c6af29095b06499a6c2589a2e86fa67fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"go.wit.com/dev/alexflint/arg"
	"go.wit.com/lib/protobuf/forgepb"
)

var me *mainType

// this app's variables
type mainType struct {
	pp    *arg.Parser    // for parsing the command line args.  Yay to alexf lint!
	forge *forgepb.Forge // your customized repo preferences and settings
}