summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-11-03 08:10:20 +0200
committerPaul Buetow <paul@buetow.org>2021-11-03 08:10:20 +0200
commit02bde6805556776ab8dd58133980b382b23e9f50 (patch)
tree697c1ff0499d6e1f444f8989344e4100a00a88da
parent5dcee7c919f8a68f5014c40abd03fbc6d733c190 (diff)
move to codebergHEADmaster
-rw-r--r--diskstats/diskstats.go2
-rw-r--r--gotop/main.go6
-rw-r--r--process/process.go2
3 files changed, 5 insertions, 5 deletions
diff --git a/diskstats/diskstats.go b/diskstats/diskstats.go
index e11994d..88c60f5 100644
--- a/diskstats/diskstats.go
+++ b/diskstats/diskstats.go
@@ -2,7 +2,7 @@ package diskstats
import (
"fmt"
- "github.com/snonux/gotop/utils"
+ "codeberg.org/snonux/gotop/utils"
)
type Diskstats struct {
diff --git a/gotop/main.go b/gotop/main.go
index 98d7622..3687d6f 100644
--- a/gotop/main.go
+++ b/gotop/main.go
@@ -7,9 +7,9 @@ import (
"errors"
"flag"
"fmt"
- "github.com/snonux/gotop/diskstats"
- "github.com/snonux/gotop/process"
- "github.com/snonux/gotop/utils"
+ "codeberg.org/snonux/gotop/diskstats"
+ "codeberg.org/snonux/gotop/process"
+ "codeberg.org/snonux/gotop/utils"
"golang.org/x/crypto/ssh/terminal"
"log"
"os"
diff --git a/process/process.go b/process/process.go
index fb9aae7..18f61dc 100644
--- a/process/process.go
+++ b/process/process.go
@@ -2,7 +2,7 @@ package process
import (
"fmt"
- "github.com/snonux/gotop/utils"
+ "codeberg.org/snonux/gotop/utils"
"io/ioutil"
"log"
"regexp"