wit-test/structs.go

20 lines
446 B
Go
Raw Normal View History

2025-02-01 11:38:22 -06:00
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
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
}