Change module name to distribyted/distribyted (#36)
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
This commit is contained in:
parent
42f7e0ebd3
commit
0f513ef8b3
13 changed files with 23 additions and 23 deletions
|
@ -3,7 +3,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/ajnavarro/distribyted"
|
||||
"github.com/distribyted/distribyted"
|
||||
"github.com/shurcooL/vfsgen"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
|
|
@ -6,14 +6,14 @@ import (
|
|||
"os/signal"
|
||||
"syscall"
|
||||
|
||||
"github.com/ajnavarro/distribyted/config"
|
||||
"github.com/ajnavarro/distribyted/fuse"
|
||||
"github.com/ajnavarro/distribyted/http"
|
||||
"github.com/ajnavarro/distribyted/stats"
|
||||
"github.com/ajnavarro/distribyted/torrent"
|
||||
"github.com/anacrolix/missinggo/v2/filecache"
|
||||
t "github.com/anacrolix/torrent"
|
||||
"github.com/anacrolix/torrent/storage"
|
||||
"github.com/distribyted/distribyted/config"
|
||||
"github.com/distribyted/distribyted/fuse"
|
||||
"github.com/distribyted/distribyted/http"
|
||||
"github.com/distribyted/distribyted/stats"
|
||||
"github.com/distribyted/distribyted/torrent"
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"os"
|
||||
"path"
|
||||
|
||||
"github.com/ajnavarro/distribyted"
|
||||
"github.com/distribyted/distribyted"
|
||||
"github.com/sirupsen/logrus"
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
|
2
fs/fs.go
2
fs/fs.go
|
@ -1,7 +1,7 @@
|
|||
package fs
|
||||
|
||||
import (
|
||||
"github.com/ajnavarro/distribyted/iio"
|
||||
"github.com/distribyted/distribyted/iio"
|
||||
)
|
||||
|
||||
type File interface {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package fs
|
||||
|
||||
import (
|
||||
"github.com/ajnavarro/distribyted/iio"
|
||||
"github.com/anacrolix/torrent"
|
||||
"github.com/distribyted/distribyted/iio"
|
||||
)
|
||||
|
||||
var _ Filesystem = &Torrent{}
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"archive/zip"
|
||||
"os"
|
||||
|
||||
"github.com/ajnavarro/distribyted/iio"
|
||||
"github.com/distribyted/distribyted/iio"
|
||||
)
|
||||
|
||||
var _ Filesystem = &Zip{}
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"io"
|
||||
"testing"
|
||||
|
||||
"github.com/ajnavarro/distribyted/iio"
|
||||
"github.com/distribyted/distribyted/iio"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
|
|
|
@ -6,11 +6,11 @@ import (
|
|||
"path"
|
||||
"runtime"
|
||||
|
||||
"github.com/ajnavarro/distribyted/config"
|
||||
"github.com/ajnavarro/distribyted/fs"
|
||||
"github.com/ajnavarro/distribyted/stats"
|
||||
"github.com/anacrolix/torrent"
|
||||
"github.com/billziss-gh/cgofuse/fuse"
|
||||
"github.com/distribyted/distribyted/config"
|
||||
"github.com/distribyted/distribyted/fs"
|
||||
"github.com/distribyted/distribyted/stats"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"os"
|
||||
"sync"
|
||||
|
||||
"github.com/ajnavarro/distribyted/fs"
|
||||
"github.com/billziss-gh/cgofuse/fuse"
|
||||
"github.com/distribyted/distribyted/fs"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
|
|
4
go.mod
4
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/ajnavarro/distribyted
|
||||
module github.com/distribyted/distribyted
|
||||
|
||||
go 1.15
|
||||
|
||||
|
@ -31,7 +31,7 @@ require (
|
|||
github.com/urfave/cli/v2 v2.3.0
|
||||
github.com/willf/bitset v1.1.11 // indirect
|
||||
golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9 // indirect
|
||||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
|
||||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
|
||||
golang.org/x/sys v0.0.0-20201113233024-12cec1faf1ba // indirect
|
||||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
|
||||
google.golang.org/protobuf v1.25.0 // indirect
|
||||
|
|
|
@ -7,9 +7,9 @@ import (
|
|||
"net/http"
|
||||
"sort"
|
||||
|
||||
"github.com/ajnavarro/distribyted/config"
|
||||
"github.com/ajnavarro/distribyted/stats"
|
||||
"github.com/anacrolix/missinggo/v2/filecache"
|
||||
"github.com/distribyted/distribyted/config"
|
||||
"github.com/distribyted/distribyted/stats"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@ package http
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/ajnavarro/distribyted"
|
||||
"github.com/ajnavarro/distribyted/config"
|
||||
"github.com/ajnavarro/distribyted/stats"
|
||||
"github.com/anacrolix/missinggo/v2/filecache"
|
||||
"github.com/distribyted/distribyted"
|
||||
"github.com/distribyted/distribyted/config"
|
||||
"github.com/distribyted/distribyted/stats"
|
||||
"github.com/gin-contrib/static"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/shurcooL/httpfs/html/vfstemplate"
|
||||
|
|
|
@ -3,7 +3,7 @@ package http
|
|||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/ajnavarro/distribyted/stats"
|
||||
"github.com/distribyted/distribyted/stats"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue