summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 21:19:54 -0500
committerJeff Carr <[email protected]>2025-09-11 21:19:54 -0500
commit235fe57beb75f147862fadbf5884fad4e8a011f3 (patch)
tree9f5bd7997c3cfed4e86c6c461486aa125a05c66c /structs.go
parent81cac132847a4778b5c865f2afa7ec5a97a14e5d (diff)
keep removing non-protobuf fields
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index 07c4af0..3c636d9 100644
--- a/structs.go
+++ b/structs.go
@@ -12,7 +12,6 @@ type Forge struct {
// one-time initialized data
once sync.Once
initErr error // init error, if any
- goSrc string // the path to go/src
goWork bool // means the user is currently using a go.work file
Config *ForgeConfigs // config repos for readonly, private, etc
Repos *gitpb.Repos // the repo protobufs
@@ -20,10 +19,11 @@ type Forge struct {
hasFullScan bool // track last scan so it can be throttled
fullscan time.Time // time of the last scan so it can be throttled
hostname string // your hostname
- forgeURL string // URL to use to forge.wit.com
rillX int // used for Rill()
rillY int // used for Rill()
Patchsets *Patchsets // patches that are in progress
+ goSrc string // the path to go/src
+ // forgeURL string // URL to use to forge.wit.com
// configDir string // normally ~/.config/forge
// patchDir string // where patches are stored
}