summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 06:08:15 -0500
committerJeff Carr <[email protected]>2025-10-15 06:08:15 -0500
commit5d0a2d4a095d87fbada8a7c5e1e2bf0f5efa648c (patch)
treecc2500733a4f4e8547d6b3b49dcb65b76266b083 /doGui.go
parentf7f02647de5f52c23202e5c2c67954bfa5af1007 (diff)
rewrite this ancient code
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/doGui.go b/doGui.go
index 8ad2076..7d88757 100644
--- a/doGui.go
+++ b/doGui.go
@@ -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
}
+*/