Updating import path after github name change
This commit is contained in:
parent
b97f8cc567
commit
d09359c952
4 changed files with 29 additions and 2 deletions
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# OS Files
|
||||||
|
*.DS_Store
|
||||||
|
|
||||||
|
# IDE's
|
||||||
|
*.idea/*
|
||||||
|
*.vscode/*
|
||||||
|
|
||||||
|
# Configuration File
|
||||||
|
config.json
|
18
docker-config.json
Normal file
18
docker-config.json
Normal 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
|
||||||
|
}
|
||||||
|
}
|
2
main.go
2
main.go
|
@ -6,7 +6,7 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/metonimie/simplFT/server"
|
"github.com/dnutiu/simplFT/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue