diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 00:58:14 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 00:58:14 -0600 |
| commit | 8a80991bd5c556f0cffc2ecf6f3814926899c85c (patch) | |
| tree | 8f3742a7f8c0a6c830f7e8d4ace7f9c7dfc0d2ec /structs.go | |
| parent | a2c47263e3425790976d917f2f033230d4aa2e76 (diff) | |
gofmt autofix paths
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -1,10 +1,10 @@ // watch all your go git repos package main -import ( +import ( "go.wit.com/gui/gui" - "go.wit.com/gui/gadgets" - "go.wit.com/gui/lib/repostatus" + "go.wit.com/lib/gadgets" + "go.wit.com/lib/gui/repostatus" ) // the main window nodes @@ -32,9 +32,9 @@ type repoType struct { toMoveToBranch string // displays the preferred names used for the repo tree state - mainBranch *gadgets.BasicCombobox + mainBranch *gadgets.BasicCombobox develBranch *gadgets.BasicCombobox - userBranch *gadgets.BasicCombobox + userBranch *gadgets.BasicCombobox // #### autotypist Global Distructive & Reset Options // #### autotypist window end @@ -47,28 +47,28 @@ var dryrun *gui.Node var allrepos []*repo type repo struct { - hidden bool - path string + hidden bool + path string lasttagrev string - lasttag string + lasttag string // tags []string pLabel *gui.Node // path label // bLabel *gui.Node // branch label lastTag *gui.Node // last tagged version label - vLabel *gui.Node // version label + vLabel *gui.Node // version label // tagsDrop *gui.Node // list of all tags dirtyLabel *gui.Node // git state (dirty or not?) - masterName *gui.Node // the master branch name + masterName *gui.Node // the master branch name masterVersion *gui.Node // the master branch version - develName *gui.Node // the devel branch name - develVersion *gui.Node // the devel branch version - userName *gui.Node // the jcarr branch name - userVersion *gui.Node // the jcarr branch version + develName *gui.Node // the devel branch name + develVersion *gui.Node // the devel branch version + userName *gui.Node // the jcarr branch name + userVersion *gui.Node // the jcarr branch version - cButton *gui.Node // commit button - pButton *gui.Node // push button + cButton *gui.Node // commit button + pButton *gui.Node // push button showButton *gui.Node // the button! status *repostatus.RepoStatus |
