chore: Changed project names for the GitHub release
This commit is contained in:
parent
85f56e55ae
commit
6fa03619ee
@ -9,8 +9,8 @@ import (
|
|||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/server"
|
"github.com/NickyBoy89/spatial-db/server"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
func populateStorageDir(
|
func populateStorageDir(
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/server"
|
"github.com/NickyBoy89/spatial-db/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
var hash server.HashServer
|
var hash server.HashServer
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/server"
|
"github.com/NickyBoy89/spatial-db/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
var inmemory server.InMemoryServer
|
var inmemory server.InMemoryServer
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"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"
|
||||||
"github.com/Tnze/go-mc/save/region"
|
"github.com/Tnze/go-mc/save/region"
|
||||||
)
|
)
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
6
main.go
6
main.go
@ -1,9 +1,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/connector"
|
"github.com/NickyBoy89/spatial-db/connector"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/loading"
|
"github.com/NickyBoy89/spatial-db/loading"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/visualization"
|
"github.com/NickyBoy89/spatial-db/visualization"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/server"
|
"github.com/NickyBoy89/spatial-db/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
var disk server.SimpleServer
|
var disk server.SimpleServer
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
type InMemoryServer struct {
|
type InMemoryServer struct {
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
const fileCacheSize = 8
|
const fileCacheSize = 8
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ReadChunkFromFile(chunkFile *os.File) (world.ChunkData, error) {
|
func ReadChunkFromFile(chunkFile *os.File) (world.ChunkData, error) {
|
||||||
|
@ -3,7 +3,7 @@ package storage
|
|||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
type StorageServer interface {
|
type StorageServer interface {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"io/fs"
|
"io/fs"
|
||||||
"os"
|
"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
|
// A `UnityFile` is a collection of chunks, stored as a single file on disk
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCreateUnityFile(t *testing.T) {
|
func TestCreateUnityFile(t *testing.T) {
|
||||||
|
@ -4,8 +4,8 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
)
|
)
|
||||||
|
|
||||||
func readBlockTemplate(
|
func readBlockTemplate(
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/server"
|
"github.com/NickyBoy89/spatial-db/server"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/storage"
|
"github.com/NickyBoy89/spatial-db/storage"
|
||||||
"git.nicholasnovak.io/nnovak/spatial-db/world"
|
"github.com/NickyBoy89/spatial-db/world"
|
||||||
tea "github.com/charmbracelet/bubbletea"
|
tea "github.com/charmbracelet/bubbletea"
|
||||||
"github.com/charmbracelet/lipgloss"
|
"github.com/charmbracelet/lipgloss"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
Loading…
Reference in New Issue
Block a user