diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 00:57:43 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 00:57:43 -0600 |
| commit | ff3a51f3544a255b2b2bcd489e7ef71a12e7196a (patch) | |
| tree | 16a0b17d227c71dcb6f96f2ed226a6cbcb712710 /new.go | |
| parent | 47a665be8bf2724730698fb6775b2f8d904f8629 (diff) | |
gofmt autofix pathsv0.12.9
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'new.go')
| -rw-r--r-- | new.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,20 +1,20 @@ package repostatus -import ( - "go.wit.com/log" +import ( "go.wit.com/gui/gui" - "go.wit.com/gui/gadgets" + "go.wit.com/lib/gadgets" + "go.wit.com/log" ) func New(p *gui.Node, path string) *RepoStatus { - rs := &RepoStatus { - hidden: true, - ready: false, - parent: p, + rs := &RepoStatus{ + hidden: true, + ready: false, + parent: p, repopath: path, } rs.tags = make(map[string]string) - rs.window = gadgets.NewBasicWindow(p, "GO Repo Details " + path) + rs.window = gadgets.NewBasicWindow(p, "GO Repo Details "+path) rs.window.Horizontal() rs.window.Make() rs.ready = true |
