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

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) {

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 {

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

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) {