diff options
| author | Jeff Carr <[email protected]> | 2025-10-15 06:08:15 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-15 06:08:15 -0500 |
| commit | 5d0a2d4a095d87fbada8a7c5e1e2bf0f5efa648c (patch) | |
| tree | cc2500733a4f4e8547d6b3b49dcb65b76266b083 /doGui.go | |
| parent | f7f02647de5f52c23202e5c2c67954bfa5af1007 (diff) | |
rewrite this ancient code
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -4,17 +4,18 @@ package main import ( - "os" - - "go.wit.com/gui" - "go.wit.com/lib/gadgets" - "go.wit.com/lib/gui/shell" "go.wit.com/log" ) // An app to submit patches for the 30 GO GUI repos func doGui() { + log.Info("The GUI is disabled for now. This app is under development currently") + me.sh.GoodExit("it works fine from the command line") +} + +/* +func doGuiTODO() { log.Warn("init basicWindow state") win := gadgets.NewGenericWindow("Create .deb files for GO applications", "things") win.Custom = func() { @@ -130,3 +131,4 @@ func newControl(grid *gui.Node) *controlBox { return c } +*/ |
