summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/buttons/log.go4
-rw-r--r--examples/buttons/main.go2
-rw-r--r--examples/cloudflare/api.go2
-rw-r--r--examples/cloudflare/argv.go4
-rw-r--r--examples/cloudflare/gui.go2
-rw-r--r--examples/cloudflare/main.go4
-rw-r--r--examples/cloudflare/structs.go2
-rw-r--r--examples/example_test.go2
-rw-r--r--examples/helloworld/main.go2
9 files changed, 12 insertions, 12 deletions
diff --git a/examples/buttons/log.go b/examples/buttons/log.go
index 7d65d05..bf3d1a5 100644
--- a/examples/buttons/log.go
+++ b/examples/buttons/log.go
@@ -4,8 +4,8 @@ package main
import (
"fmt"
arg "github.com/alexflint/go-arg"
- "git.wit.org/wit/gui"
- log "git.wit.org/wit/gui/log"
+ "go.wit.com/gui"
+ log "go.wit.com/gui/log"
)
diff --git a/examples/buttons/main.go b/examples/buttons/main.go
index 3200e9e..e76aaac 100644
--- a/examples/buttons/main.go
+++ b/examples/buttons/main.go
@@ -5,7 +5,7 @@ import (
"fmt"
"log"
"strconv"
- "git.wit.org/wit/gui"
+ "go.wit.com/gui"
)
var title string = "Demo Plugin Window"
diff --git a/examples/cloudflare/api.go b/examples/cloudflare/api.go
index 9522b07..c65fbde 100644
--- a/examples/cloudflare/api.go
+++ b/examples/cloudflare/api.go
@@ -80,7 +80,7 @@ func getZonefile(c *configT) *DNSRecords {
This will talk to the cloudflare API and generate a resource record in the zonefile:
For example:
- gitea.wit.com. 3600 IN CNAME git.wit.org.
+ gitea.wit.com. 3600 IN CNAME git.wit.com.
go.wit.com. 3600 IN A 1.1.1.9
test.wit.com. 3600 IN NS ns1.wit.com.
*/
diff --git a/examples/cloudflare/argv.go b/examples/cloudflare/argv.go
index 38579c7..49167cd 100644
--- a/examples/cloudflare/argv.go
+++ b/examples/cloudflare/argv.go
@@ -4,8 +4,8 @@ package main
import (
"fmt"
arg "github.com/alexflint/go-arg"
- "git.wit.org/wit/gui"
- log "git.wit.org/wit/gui/log"
+ "go.wit.com/gui"
+ log "go.wit.com/gui/log"
)
diff --git a/examples/cloudflare/gui.go b/examples/cloudflare/gui.go
index ed08482..587a9bc 100644
--- a/examples/cloudflare/gui.go
+++ b/examples/cloudflare/gui.go
@@ -5,7 +5,7 @@ import (
"log"
"strconv"
- "git.wit.org/jcarr/control-panel-dns/cloudflare"
+ "go.wit.com/control-panel-dns/cloudflare"
)
func loadDNS(c *configT) {
diff --git a/examples/cloudflare/main.go b/examples/cloudflare/main.go
index aeb8570..64dabc5 100644
--- a/examples/cloudflare/main.go
+++ b/examples/cloudflare/main.go
@@ -8,8 +8,8 @@ import (
"bufio"
"strings"
- "git.wit.org/wit/gui"
- "git.wit.org/jcarr/control-panel-dns/cloudflare"
+ "go.wit.com/gui"
+ "go.wit.com/control-panel-dns/cloudflare"
)
var title string = "Cloudflare DNS Control Panel"
diff --git a/examples/cloudflare/structs.go b/examples/cloudflare/structs.go
index 50647d7..fa5516b 100644
--- a/examples/cloudflare/structs.go
+++ b/examples/cloudflare/structs.go
@@ -2,7 +2,7 @@
package main
import (
- "git.wit.org/wit/gui"
+ "go.wit.com/gui"
)
var cloudflareURL string = "https://api.cloudflare.com/client/v4/zones/"
diff --git a/examples/example_test.go b/examples/example_test.go
index f65cad1..0086908 100644
--- a/examples/example_test.go
+++ b/examples/example_test.go
@@ -17,7 +17,7 @@
package gui_test
import (
- "git.wit.org/wit/gui"
+ "go.wit.com/gui"
)
// This example demonstrates how to create a NewWindow()
diff --git a/examples/helloworld/main.go b/examples/helloworld/main.go
index 3d8ba40..06c1da5 100644
--- a/examples/helloworld/main.go
+++ b/examples/helloworld/main.go
@@ -3,7 +3,7 @@ package main
import (
"log"
- "git.wit.org/wit/gui"
+ "go.wit.com/gui"
)
func main() {