diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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) } +*/ |
