summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-10 22:35:20 -0500
committerJeff Carr <[email protected]>2025-09-10 22:35:20 -0500
commit43d653a8c040d68a4386d1fc1cc7cfa18ce34e83 (patch)
tree775ffc06fc9536de221a36b6855fe391132f5f7d /structs.go
parent6722b019ec1271fd95a970f14e2e2aed4cdf6116 (diff)
add config file support
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index d0c5e30..d21e9f8 100644
--- a/structs.go
+++ b/structs.go
@@ -13,7 +13,8 @@ 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 // for holding the forge protobuf files
- myGui *prep.GuiPrep // the gui toolkit handle
+ pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
+ forge *forgepb.Forge // for holding the forge protobuf files
+ myGui *prep.GuiPrep // the gui toolkit handle
+ configs *forgepb.ForgeConfigs // for holding the forge protobuf files
}