summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 20:54:49 -0500
committerJeff Carr <[email protected]>2025-09-11 20:54:49 -0500
commit81cac132847a4778b5c865f2afa7ec5a97a14e5d (patch)
tree5fee3cdce5a3861b9c6735ace4dcf641e3ee162d /structs.go
parent98407ed8b773ae95c8e7ff229da5f653090e47e1 (diff)
start removing old code
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 99d5172..07c4af0 100644
--- a/structs.go
+++ b/structs.go
@@ -24,7 +24,7 @@ type Forge struct {
rillX int // used for Rill()
rillY int // used for Rill()
Patchsets *Patchsets // patches that are in progress
- configDir string // normally ~/.config/forge
+ // configDir string // normally ~/.config/forge
// patchDir string // where patches are stored
}
@@ -32,14 +32,11 @@ func (f *Forge) GetGoSrc() string {
return f.goSrc
}
-func (f *Forge) GetConfigDir() string {
- return f.configDir
-}
-
func (f *Forge) IsGoWork() bool {
return f.goWork
}
+/*
func (f *Forge) HasFullScan() bool {
return f.Repos.HasFullScan
}
@@ -52,3 +49,4 @@ func (f *Forge) FullScanAge() time.Duration {
fs := f.Repos.FullScan.AsTime()
return time.Since(fs)
}
+*/