diff options
| -rw-r--r-- | mode.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -16,6 +16,13 @@ func (f *Forge) GetMode() string { } } +// indicates the user is trying to cleanup repos +// stays in this mode until the user leaves it +// should not change the repos selected +func (f *Forge) SetCleaningMode() { + f.SetMode(ForgeMode_CLEAN) +} + func (f *Forge) IsModeUnknown() bool { if f.mode == ForgeMode_UNKNOWN { return true |
