fix: update package names

This commit is contained in:
Aliberk Sandıkçı 2023-08-23 22:49:17 +03:00
parent cdafd63ddf
commit f4091fc9ae
Signed by: asandikci
GPG key ID: 25C67A03B5666BC1
4 changed files with 6 additions and 4 deletions

View file

@ -1,11 +1,12 @@
package main package main
import ( import (
"ahenk-go/pkg/utils"
"log" "log"
"os" "os"
"syscall" "syscall"
"git.aliberksandikci.com.tr/Liderahenk/ahenk-go/pkg/utils"
"github.com/sevlyar/go-daemon" "github.com/sevlyar/go-daemon"
"golang.org/x/exp/slices" "golang.org/x/exp/slices"
) )

2
go.mod
View file

@ -1,4 +1,4 @@
module ahenk-go module git.aliberksandikci.com.tr/Liderahenk/ahenk-go
go 1.20 go 1.20

View file

@ -1,9 +1,9 @@
package osinfo package osinfo
import ( import (
"ahenk-go/pkg/utils"
"syscall" "syscall"
"git.aliberksandikci.com.tr/Liderahenk/ahenk-go/pkg/utils"
"github.com/shirou/gopsutil/disk" "github.com/shirou/gopsutil/disk"
) )

View file

@ -1,9 +1,10 @@
package main package main
import ( import (
"ahenk-go/pkg/osinfo"
"fmt" "fmt"
"runtime" "runtime"
"git.aliberksandikci.com.tr/Liderahenk/ahenk-go/pkg/osinfo"
) )
type greeting string type greeting string