14 lines
217 B
Go
14 lines
217 B
Go
|
package main
|
||
|
|
||
|
import "go.wit.com/lib/protobuf/forgepb"
|
||
|
|
||
|
var me *testMe
|
||
|
|
||
|
// this app's variables
|
||
|
type testMe struct {
|
||
|
forge *forgepb.Forge
|
||
|
startPwd string // pwd when you start
|
||
|
testDir1 string
|
||
|
testDir2 string
|
||
|
}
|