From 8a80991bd5c556f0cffc2ecf6f3814926899c85c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 18 Jan 2024 00:58:14 -0600 Subject: gofmt autofix paths Signed-off-by: Jeff Carr --- structs.go | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'structs.go') diff --git a/structs.go b/structs.go index 7e163f3..ecbed45 100644 --- a/structs.go +++ b/structs.go @@ -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 -- cgit v1.2.3