diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 21:19:54 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 21:19:54 -0500 |
| commit | 235fe57beb75f147862fadbf5884fad4e8a011f3 (patch) | |
| tree | 9f5bd7997c3cfed4e86c6c461486aa125a05c66c /structs.go | |
| parent | 81cac132847a4778b5c865f2afa7ec5a97a14e5d (diff) | |
keep removing non-protobuf fields
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |
