summaryrefslogtreecommitdiff
path: root/app/util.go
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-07-14 20:22:04 -0500
committerChristian Cleberg <[email protected]>2026-07-14 20:22:04 -0500
commit0fdc45a668d95d603a9013f90392f6bc966c72f9 (patch)
tree3c0b5ef28c6c5064b2bc0abe890c15a1933fd129 /app/util.go
parent6b8e23001283acb95d10c275155e9cb83b15f598 (diff)
downloadskunky-art-0fdc45a668d95d603a9013f90392f6bc966c72f9.tar.gz
skunky-art-0fdc45a668d95d603a9013f90392f6bc966c72f9.tar.bz2
skunky-art-0fdc45a668d95d603a9013f90392f6bc966c72f9.zip
deps: migrate to github.com/zerolabsco/devianter v0.3.1
Repoint the import path from git.macaw.me/skunky/devianter, replacing a placeholder v0.0.0 require that had no go.sum entry and did not resolve. v0.3.1 reorders the last two return values of PerformSearch, Group.Get and Group.Gallery from (..., error, Error) to (..., Error, error); adapt the call sites. The two types differ, so the compiler enforces this.
Diffstat (limited to 'app/util.go')
-rwxr-xr-xapp/util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/util.go b/app/util.go
index 6ece2e8..493997b 100755
--- a/app/util.go
+++ b/app/util.go
@@ -12,7 +12,7 @@ import (
"text/template"
"time"
- "git.macaw.me/skunky/devianter"
+ "github.com/zerolabsco/devianter"
"golang.org/x/net/html"
)