chore(gonf): updated dependencies and fixed go.mod version

This commit is contained in:
Julien Dessaux 2024-09-16 23:44:12 +02:00
parent e2cd47cb18
commit aad0157b42
Signed by: adyxax
GPG key ID: F92E51B86E07177E
8 changed files with 11 additions and 11 deletions

4
go.mod
View file

@ -1,6 +1,6 @@
module git.adyxax.org/adyxax/gonf/v2
module git.adyxax.org/adyxax/gonf
go 1.23.0
go 1.23.1
require golang.org/x/crypto v0.27.0

View file

@ -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

View file

@ -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")

View file

@ -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 {

View file

@ -8,7 +8,7 @@ import (
"os/exec"
"strings"
gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
gonf "git.adyxax.org/adyxax/gonf/pkg"
)
var packages map[string]string

View file

@ -3,9 +3,9 @@ package debian
import (
_ "embed"
gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
"git.adyxax.org/adyxax/gonf/v2/stdlib/os/linux"
"git.adyxax.org/adyxax/gonf/v2/stdlib/os/systemd"
gonf "git.adyxax.org/adyxax/gonf/pkg"
"git.adyxax.org/adyxax/gonf/stdlib/os/linux"
"git.adyxax.org/adyxax/gonf/stdlib/os/systemd"
)
//go:embed apt-norecommends

View file

@ -1,7 +1,7 @@
package linux
import (
"git.adyxax.org/adyxax/gonf/v2/pkg"
"git.adyxax.org/adyxax/gonf/pkg"
"os/exec"
)

View file

@ -4,7 +4,7 @@ import (
"fmt"
"os/exec"
gonf "git.adyxax.org/adyxax/gonf/v2/pkg"
gonf "git.adyxax.org/adyxax/gonf/pkg"
)
func Promise() {