summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-07 16:48:33 -0600
committerJeff Carr <[email protected]>2024-01-07 16:48:33 -0600
commit4ed6f6b35f13066a6b5c4a59666cb9b72a639973 (patch)
tree57756d8538955423a844a31839347351068ff949
parent74bfddc1e4f3c459bfc30e13113b73e127f7e402 (diff)
new paths
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--Makefile2
-rw-r--r--fix.go2
-rw-r--r--gui.go2
-rw-r--r--main.go2
-rw-r--r--structs.go4
5 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ac0bed4..e273177 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ build:
-mkdir -p plugins/
-cp ~/go/src/go.wit.com/gui/toolkits/*.so plugins/
# GO111MODULE="off" go get -v -x .
- GO111MODULE="off" go build -v -o control-panel-dns
+ GO111MODULE="off" go build -v
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./control-panel-dns.v1)
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./control-panel-dns.v1)
diff --git a/fix.go b/fix.go
index 1231f61..295e689 100644
--- a/fix.go
+++ b/fix.go
@@ -4,7 +4,7 @@ package main
import (
"go.wit.com/log"
"go.wit.com/gui/cloudflare"
- "go.wit.com/control-panels/dns/smartwindow"
+ "go.wit.com/wit/control-panel-dns/smartwindow"
)
func fix() bool {
diff --git a/gui.go b/gui.go
index 253e948..97b2fa0 100644
--- a/gui.go
+++ b/gui.go
@@ -12,7 +12,7 @@ import (
"go.wit.com/gui/cloudflare"
"go.wit.com/gui/debugger"
"go.wit.com/gui/gadgets/logsettings"
- "go.wit.com/control-panels/dns/smartwindow"
+ "go.wit.com/wit/control-panel-dns/smartwindow"
)
// This setups up the dns control panel window
diff --git a/main.go b/main.go
index 72b390d..23e3af8 100644
--- a/main.go
+++ b/main.go
@@ -14,7 +14,7 @@ import (
"go.wit.com/gui/gui"
"go.wit.com/gui/debugger"
- "go.wit.com/control-panels/dns/linuxstatus"
+ "go.wit.com/wit/control-panel-dns/linuxstatus"
"github.com/miekg/dns"
)
diff --git a/structs.go b/structs.go
index 8130881..60d52b9 100644
--- a/structs.go
+++ b/structs.go
@@ -7,8 +7,8 @@ import (
"go.wit.com/gui/gui"
"go.wit.com/gui/gadgets"
// "go.wit.com/gui/cloudflare"
- "go.wit.com/control-panels/dns/linuxstatus"
- "go.wit.com/control-panels/dns/smartwindow"
+ "go.wit.com/wit/control-panel-dns/linuxstatus"
+ "go.wit.com/wit/control-panel-dns/smartwindow"
"github.com/miekg/dns"
)