Updating import path after github name change

This commit is contained in:
Denis-Cosmin Nutiu 2018-10-22 22:31:37 +03:00
parent b97f8cc567
commit d09359c952
4 changed files with 29 additions and 2 deletions

9
.gitignore vendored Normal file
View file

@ -0,0 +1,9 @@
# OS Files
*.DS_Store
# IDE's
*.idea/*
*.vscode/*
# Configuration File
config.json

18
docker-config.json Normal file
View file

@ -0,0 +1,18 @@
{
"address": "0.0.0.0",
"port": 8080,
"maxDirDepth": 30,
"absoluteServePath": "/externalVolume",
"pic": {
"color": true,
"x": 197,
"y": 50
},
"upload": {
"enabled": true,
"directory": "upload",
"timeout": 5,
"address": "0.0.0.0",
"port": 8081
}
}

View file

@ -6,7 +6,7 @@ import (
"log" "log"
"sync" "sync"
"github.com/metonimie/simplFT/server" "github.com/dnutiu/simplFT/server"
) )
func main() { func main() {

View file

@ -16,8 +16,8 @@ import (
"sync" "sync"
"github.com/dnutiu/simplFT/server/config"
"github.com/fsnotify/fsnotify" "github.com/fsnotify/fsnotify"
"github.com/metonimie/simplFT/server/config"
"github.com/spf13/viper" "github.com/spf13/viper"
) )