diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,8 @@ package repolist import ( + "sync" + "go.wit.com/gui" "go.wit.com/lib/gui/repostatus" ) @@ -17,6 +19,8 @@ func (b *RepoList) Enable() { // this app's variables type RepoList struct { + sync.RWMutex + onlyMe bool goSrcPwd string allrepos map[string]*RepoRow |
