diff options
| author | Jeff Carr <[email protected]> | 2025-01-17 14:19:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-17 14:19:26 -0600 |
| commit | ab73c05b9dd50f491f5ef1b919a464ca2a269aef (patch) | |
| tree | 53f962a2afe1ae19117eeefed77352f383d5c4de /structs.go | |
| parent | 68ee252acd016e2880c4fa38c7555250c7965e44 (diff) | |
double check finished reposv0.23.24
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -12,16 +12,16 @@ import ( var me *autoType type autoType struct { - pp *arg.Parser // for parsing the command line args. Yay to alexf lint! - myGui *gui.Node - - releaseReasonS string // = "gocui dropdown select" - release releaseStruct - reposbox *gui.Node - reposgrid *gui.Node - reposgroup *gui.Node - current *gitpb.Repo - found *gitpb.Repos // stores the list of repos to process things on + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + myGui *gui.Node // the gui handle itself + releaseReasonS string // = "gocui dropdown select" + release releaseStruct // notsure + reposbox *gui.Node // notsure + reposgrid *gui.Node // notsure + reposgroup *gui.Node // notsure + current *gitpb.Repo // tracks the next repo to publish + found *gitpb.Repos // stores the list of repos to process things on + done []string // gopaths for repos already published // this is the repo we are starting in // make sure it never changes so go.mod and go.sum are always there |
