aboutsummaryrefslogtreecommitdiff
path: root/cmd/show-object
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/show-object')
-rw-r--r--cmd/show-object/print.go12
-rw-r--r--cmd/show-object/resolve.go4
-rw-r--r--cmd/show-object/run.go2
3 files changed, 9 insertions, 9 deletions
diff --git a/cmd/show-object/print.go b/cmd/show-object/print.go
index fcd6494f..315527b1 100644
--- a/cmd/show-object/print.go
+++ b/cmd/show-object/print.go
@@ -5,12 +5,12 @@ import (
"os"
"strings"
- "codeberg.org/lindenii/furgit/object"
- "codeberg.org/lindenii/furgit/object/blob"
- "codeberg.org/lindenii/furgit/object/commit"
- "codeberg.org/lindenii/furgit/object/stored"
- "codeberg.org/lindenii/furgit/object/tag"
- "codeberg.org/lindenii/furgit/object/tree"
+ "lindenii.org/go/furgit/object"
+ "lindenii.org/go/furgit/object/blob"
+ "lindenii.org/go/furgit/object/commit"
+ "lindenii.org/go/furgit/object/stored"
+ "lindenii.org/go/furgit/object/tag"
+ "lindenii.org/go/furgit/object/tree"
)
func printStored(s *stored.Stored[object.Object]) {
diff --git a/cmd/show-object/resolve.go b/cmd/show-object/resolve.go
index 22afe70c..cd1c6b78 100644
--- a/cmd/show-object/resolve.go
+++ b/cmd/show-object/resolve.go
@@ -3,8 +3,8 @@ package main
import (
"strings"
- objectid "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/repository"
+ objectid "lindenii.org/go/furgit/object/id"
+ "lindenii.org/go/furgit/repository"
)
func resolveInput(repo *repository.Repository, input string) (objectid.ObjectID, error) {
diff --git a/cmd/show-object/run.go b/cmd/show-object/run.go
index f1a6fc6d..4a322f1f 100644
--- a/cmd/show-object/run.go
+++ b/cmd/show-object/run.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "codeberg.org/lindenii/furgit/repository"
+ "lindenii.org/go/furgit/repository"
)
func run(repoPath, name *string) error {