wit-test/structs.go

17 lines
334 B
Go
Raw Permalink Normal View History

2024-12-24 04:47:58 -06:00
package main
import (
2025-01-07 17:17:01 -06:00
"go.wit.com/dev/alexflint/arg"
2024-12-24 04:47:58 -06:00
"go.wit.com/gui"
"go.wit.com/lib/protobuf/forgepb"
)
var me *autoType
// this app's variables
type autoType struct {
2025-01-07 17:17:01 -06:00
argpp *arg.Parser // go-arg preprocessor
myGui *gui.Node // the gui handle
forge *forgepb.Forge // your customized repo preferences and settings
2024-12-24 04:47:58 -06:00
}