summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
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)
}
+*/