summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rwxr-xr-xapp/api.go2
-rwxr-xr-xapp/cli.go4
-rwxr-xr-xapp/config.go2
-rwxr-xr-xapp/parsers.go2
-rwxr-xr-xapp/util.go4
-rwxr-xr-xapp/wrapper.go2
6 files changed, 8 insertions, 8 deletions
diff --git a/app/api.go b/app/api.go
index 59d045f..5b23668 100755
--- a/app/api.go
+++ b/app/api.go
@@ -6,7 +6,7 @@ import (
"strconv"
"strings"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
)
// API serves the JSON endpoints under /api, backed by the request its main
diff --git a/app/cli.go b/app/cli.go
index c4c9f23..f023036 100755
--- a/app/cli.go
+++ b/app/cli.go
@@ -20,7 +20,7 @@ Usage:
- [-h|--help] | returns this message
Example:
./skunkyart -c config.json
-Copyright lost+skunk and zerolabs, X11. https://github.com/zerolabsco/skunky-art/releases/tag/v{{.Version}}`
+Copyright lost+skunk and zerolabs, X11. https://github.com/krazywarez/skunky-art/releases/tag/v{{.Version}}`
a := os.Args[1:]
for n, x := range a {
@@ -175,5 +175,5 @@ func addInstance() {
}
time.Sleep(500 * time.Millisecond)
}
- exit("Done! Now add the files 'instances.json' and 'INSTANCES.md' to the 'main' branch in the repository https://github.com/zerolabsco/skunky-art", 0)
+ exit("Done! Now add the files 'instances.json' and 'INSTANCES.md' to the 'main' branch in the repository https://github.com/krazywarez/skunky-art", 0)
}
diff --git a/app/config.go b/app/config.go
index 74c01f7..2faa69d 100755
--- a/app/config.go
+++ b/app/config.go
@@ -8,7 +8,7 @@ import (
"strconv"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
)
// Release carries the build's version and description, set at link time and
diff --git a/app/parsers.go b/app/parsers.go
index e5fd0d1..68fdbe4 100755
--- a/app/parsers.go
+++ b/app/parsers.go
@@ -5,7 +5,7 @@ import (
"strconv"
"strings"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)
diff --git a/app/util.go b/app/util.go
index 520dfbd..205ed7a 100755
--- a/app/util.go
+++ b/app/util.go
@@ -14,7 +14,7 @@ import (
"text/template"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)
@@ -61,7 +61,7 @@ func RefreshInstances() {
for {
func() {
defer restore()
- instances = Download("https://raw.githubusercontent.com/zerolabsco/skunky-art/main/instances.json").Body
+ instances = Download("https://raw.githubusercontent.com/krazywarez/skunky-art/main/instances.json").Body
try(json.Unmarshal(instances, &About))
}()
time.Sleep(1 * time.Hour)
diff --git a/app/wrapper.go b/app/wrapper.go
index 7465062..3666185 100755
--- a/app/wrapper.go
+++ b/app/wrapper.go
@@ -6,7 +6,7 @@ import (
"strings"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)