Skip to content

Commit a75a1b4

Browse files
committed
add github link in import packages instead of local path
1 parent 4d3b1e3 commit a75a1b4

28 files changed

+41
-41
lines changed

cmd/memex/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"memex/pkg/memex"
10+
"github.com/systemshift/memex/pkg/memex"
1111
)
1212

1313
func usage() {

cmd/memexd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
"path/filepath"
1111

12-
"memex/internal/memex/storage"
12+
"github.com/systemshift/memex/internal/memex/storage"
1313
)
1414

1515
type Server struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module memex
1+
module github.com/systemshift/memex
22

33
go 1.20
44

internal/memex/commands.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strconv"
99
"strings"
1010

11-
"memex/internal/memex/core"
12-
"memex/internal/memex/migration"
13-
"memex/internal/memex/repository"
11+
"github.com/systemshift/memex/internal/memex/core"
12+
"github.com/systemshift/memex/internal/memex/migration"
13+
"github.com/systemshift/memex/internal/memex/repository"
1414
)
1515

1616
var (

internal/memex/migration/export.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"time"
1010

11-
"memex/internal/memex/core"
11+
"github.com/systemshift/memex/internal/memex/core"
1212
)
1313

1414
// Exporter handles repository exports

internal/memex/migration/import.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"memex/internal/memex/core"
13+
"github.com/systemshift/memex/internal/memex/core"
1414
)
1515

1616
// Importer handles repository imports

internal/memex/migration/verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"io"
77
"os"
88

9-
"memex/internal/memex/core"
9+
"github.com/systemshift/memex/internal/memex/core"
1010
)
1111

1212
// VerifyRepository checks repository integrity

internal/memex/repository/repository.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"sync"
1111
"time"
1212

13-
"memex/internal/memex/core"
14-
"memex/internal/memex/storage/rabin"
15-
"memex/internal/memex/storage/store"
16-
"memex/internal/memex/transaction"
13+
"github.com/systemshift/memex/internal/memex/core"
14+
"github.com/systemshift/memex/internal/memex/storage/rabin"
15+
"github.com/systemshift/memex/internal/memex/storage/store"
16+
"github.com/systemshift/memex/internal/memex/transaction"
1717
)
1818

1919
// Magic number for .mx files

internal/memex/storage/store/store.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"os"
1111
"sync"
1212

13-
"memex/internal/memex/core"
14-
"memex/internal/memex/storage"
15-
"memex/internal/memex/transaction"
13+
"github.com/systemshift/memex/internal/memex/core"
14+
"github.com/systemshift/memex/internal/memex/storage"
15+
"github.com/systemshift/memex/internal/memex/transaction"
1616
)
1717

1818
// ChunkStore implements basic content-addressed storage

internal/memex/transaction/store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"sync"
1313
"time"
1414

15-
"memex/internal/memex/storage/common"
15+
"github.com/systemshift/memex/internal/memex/storage/common"
1616
)
1717

1818
// ActionStore manages the history of actions in the graph

0 commit comments

Comments
 (0)