chore: Changed project names for the GitHub release

This commit is contained in:
Nicholas Novak
2023-12-13 23:48:53 -08:00
parent 85f56e55ae
commit 6fa03619ee
16 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ import (
log "github.com/sirupsen/logrus"
"git.nicholasnovak.io/nnovak/spatial-db/server"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/server"
"github.com/NickyBoy89/spatial-db/world"
)
func populateStorageDir(
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"git.nicholasnovak.io/nnovak/spatial-db/server"
"github.com/NickyBoy89/spatial-db/server"
)
var hash server.HashServer
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"git.nicholasnovak.io/nnovak/spatial-db/server"
"github.com/NickyBoy89/spatial-db/server"
)
var inmemory server.InMemoryServer
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"strconv"
"strings"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/world"
"github.com/Tnze/go-mc/save"
"github.com/Tnze/go-mc/save/region"
)
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"path/filepath"
"strings"
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/storage"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
+3 -3
View File
@@ -1,9 +1,9 @@
package main
import (
"git.nicholasnovak.io/nnovak/spatial-db/connector"
"git.nicholasnovak.io/nnovak/spatial-db/loading"
"git.nicholasnovak.io/nnovak/spatial-db/visualization"
"github.com/NickyBoy89/spatial-db/connector"
"github.com/NickyBoy89/spatial-db/loading"
"github.com/NickyBoy89/spatial-db/visualization"
"github.com/spf13/cobra"
)
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"git.nicholasnovak.io/nnovak/spatial-db/server"
"github.com/NickyBoy89/spatial-db/server"
)
var disk server.SimpleServer
+2 -2
View File
@@ -1,8 +1,8 @@
package server
import (
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/world"
log "github.com/sirupsen/logrus"
)
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"os"
"path/filepath"
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/world"
)
type InMemoryServer struct {
+2 -2
View File
@@ -7,8 +7,8 @@ import (
"os"
"path/filepath"
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/world"
)
const fileCacheSize = 8
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strings"
"sync"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/world"
)
func ReadChunkFromFile(chunkFile *os.File) (world.ChunkData, error) {
+1 -1
View File
@@ -3,7 +3,7 @@ package storage
import (
"errors"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/world"
)
type StorageServer interface {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"io/fs"
"os"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/world"
)
// A `UnityFile` is a collection of chunks, stored as a single file on disk
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"reflect"
"testing"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/world"
)
func TestCreateUnityFile(t *testing.T) {
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"errors"
"testing"
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/world"
)
func readBlockTemplate(
+3 -3
View File
@@ -4,9 +4,9 @@ import (
"errors"
"strings"
"git.nicholasnovak.io/nnovak/spatial-db/server"
"git.nicholasnovak.io/nnovak/spatial-db/storage"
"git.nicholasnovak.io/nnovak/spatial-db/world"
"github.com/NickyBoy89/spatial-db/server"
"github.com/NickyBoy89/spatial-db/storage"
"github.com/NickyBoy89/spatial-db/world"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/spf13/cobra"