Rename module
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2022-01-13 18:40:15 +01:00
parent 4c4e01ddb7
commit fd729eef89
28 changed files with 58 additions and 57 deletions

View File

@@ -6,7 +6,7 @@ import (
"fmt"
"strings"
"gitea.benny.dog/torjus/ezshare/pb"
"git.t-juice.club/torjus/ezshare/pb"
"github.com/google/uuid"
bolt "go.etcd.io/bbolt"
"google.golang.org/protobuf/proto"

View File

@@ -5,7 +5,7 @@ import (
"path/filepath"
"testing"
"gitea.benny.dog/torjus/ezshare/store"
"git.t-juice.club/torjus/ezshare/store"
)
func TestBoltStore(t *testing.T) {

View File

@@ -8,7 +8,7 @@ import (
"os"
"path/filepath"
"gitea.benny.dog/torjus/ezshare/pb"
"git.t-juice.club/torjus/ezshare/pb"
"github.com/google/uuid"
)

View File

@@ -3,7 +3,7 @@ package store_test
import (
"testing"
"gitea.benny.dog/torjus/ezshare/store"
"git.t-juice.club/torjus/ezshare/store"
)
func TestFileStore(t *testing.T) {

View File

@@ -8,7 +8,7 @@ import (
"strings"
"sync"
"gitea.benny.dog/torjus/ezshare/pb"
"git.t-juice.club/torjus/ezshare/pb"
"github.com/google/uuid"
)

View File

@@ -3,7 +3,7 @@ package store_test
import (
"testing"
"gitea.benny.dog/torjus/ezshare/store"
"git.t-juice.club/torjus/ezshare/store"
)
func TestMemoryFileStore(t *testing.T) {

View File

@@ -5,7 +5,7 @@ import (
"crypto/x509"
"fmt"
"gitea.benny.dog/torjus/ezshare/pb"
"git.t-juice.club/torjus/ezshare/pb"
)
var ErrNoSuchItem = fmt.Errorf("no such item")

View File

@@ -14,8 +14,8 @@ import (
"github.com/google/uuid"
"google.golang.org/protobuf/testing/protocmp"
"gitea.benny.dog/torjus/ezshare/pb"
"gitea.benny.dog/torjus/ezshare/store"
"git.t-juice.club/torjus/ezshare/pb"
"git.t-juice.club/torjus/ezshare/store"
"google.golang.org/protobuf/types/known/timestamppb"
)