diff options
| author | Jeff Carr <[email protected]> | 2024-01-03 14:41:03 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-03 14:41:03 -0600 | 
| commit | eb14f1d21fbdde46d8c31ce5dd5927f7798622d6 (patch) | |
| tree | eea106e97422935e5f5c9314cb85e4793d237b17 | |
| parent | 5e485f20d9893034eb37d4c92608ee4cb9b57c6a (diff) | |
use 'gui/debugger'
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | config.go | 2 | ||||
| -rw-r--r-- | go.mod | 3 | ||||
| -rw-r--r-- | main.go | 1 | 
4 files changed, 10 insertions, 6 deletions
@@ -1,14 +1,14 @@  run: build -	./control-panel-cloudflare +	./control-panel-cloudflare --gui-debug -build-release: +build-and-update:  	go get -v -u -x . -	go build +	go build -v -o control-panel-cloudflare  	./control-panel-cloudflare  build: -	GO111MODULE="off" go get -v -x . -	GO111MODULE="off" go build +	go get -v -x . +	go build -v -o control-panel-cloudflare  update:  	GO111MODULE="off" go get -v -u -x . @@ -6,7 +6,7 @@ import 	(  	"bufio"  	"strings" -	"go.wit.com/control-panel-dns/cloudflare" +	"go.wit.com/gui/cloudflare"  )  var configfile string = ".config/wit/cloudflare" @@ -0,0 +1,3 @@ +module go.wit.com/control-panels/cloudflare + +go 1.21.4 @@ -25,6 +25,7 @@ func main() {  	// draw the cloudflare control panel window  	win := cloudflare.MakeCloudflareWindow(myGui)  	win.SetText(title) +	win.Show()  	// This is just a optional goroutine to watch that things are alive  	gui.Watchdog()  | 
