summaryrefslogtreecommitdiff
path: root/stdlib/backups
diff options
context:
space:
mode:
authorJulien Dessaux2024-09-16 23:44:12 +0200
committerJulien Dessaux2024-09-16 23:44:59 +0200
commitaad0157b42d3a0215d011eac2226f4154bec804c (patch)
treea58e5a73845c60ce05eda743732db05dc30bcdd0 /stdlib/backups
parentchore(gonf): updated dependencies (diff)
downloadgonf-aad0157b42d3a0215d011eac2226f4154bec804c.tar.gz
gonf-aad0157b42d3a0215d011eac2226f4154bec804c.tar.bz2
gonf-aad0157b42d3a0215d011eac2226f4154bec804c.zip
chore(gonf): updated dependencies and fixed go.mod version
Diffstat (limited to 'stdlib/backups')
-rw-r--r--stdlib/backups/borg/client.go2
-rw-r--r--stdlib/backups/borg/common.go2
-rw-r--r--stdlib/backups/borg/server.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/backups/borg/client.go b/stdlib/backups/borg/client.go
index 95d8d0d..b0c8292 100644
--- a/stdlib/backups/borg/client.go
+++ b/stdlib/backups/borg/client.go
@@ -8,7 +8,7 @@ import (
"log/slog"
"path/filepath"
- gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
+ gonf "git.adyxax.org/adyxax/gonf/pkg"
)
//go:embed borg-script-template
diff --git a/stdlib/backups/borg/common.go b/stdlib/backups/borg/common.go
index 60d14f2..bc27558 100644
--- a/stdlib/backups/borg/common.go
+++ b/stdlib/backups/borg/common.go
@@ -1,6 +1,6 @@
package borg
-import gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
+import gonf "git.adyxax.org/adyxax/gonf/pkg"
func installBorgPackage() gonf.Status {
packag := gonf.Package("borgbackup")
diff --git a/stdlib/backups/borg/server.go b/stdlib/backups/borg/server.go
index 29794d8..d699485 100644
--- a/stdlib/backups/borg/server.go
+++ b/stdlib/backups/borg/server.go
@@ -4,7 +4,7 @@ import (
"log/slog"
"path/filepath"
- gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
+ gonf "git.adyxax.org/adyxax/gonf/pkg"
)
type BorgServer struct {