diff --git a/.dev/vagrant/motd.txt b/.dev/vagrant/motd.txt index 39c0731..bb533fc 100644 --- a/.dev/vagrant/motd.txt +++ b/.dev/vagrant/motd.txt @@ -2,7 +2,7 @@ Pterodactyl go Daemon Vagrant VM Gopath: /home/ubuntu/go -Daemon: /home/ubuntu/go/src/github.com/Pterodactyl/wings.go +Daemon: /home/ubuntu/go/src/github.com/pterodactyl/wings.go Data: /srv/daemon-data ##################################################### diff --git a/api/api.go b/api/api.go index 4622c53..ee0751c 100644 --- a/api/api.go +++ b/api/api.go @@ -8,7 +8,7 @@ import ( log "github.com/sirupsen/logrus" "github.com/spf13/viper" - "github.com/Pterodactyl/wings/config" + "github.com/pterodactyl/wings/config" ) type InternalAPI struct { diff --git a/api/auth.go b/api/auth.go index 00cde92..ef67b66 100644 --- a/api/auth.go +++ b/api/auth.go @@ -3,9 +3,9 @@ package api import ( "net/http" - "github.com/Pterodactyl/wings/config" - "github.com/Pterodactyl/wings/control" "github.com/gin-gonic/gin" + "github.com/pterodactyl/wings/config" + "github.com/pterodactyl/wings/control" log "github.com/sirupsen/logrus" ) diff --git a/api/auth_test.go b/api/auth_test.go index c66e868..692e64a 100644 --- a/api/auth_test.go +++ b/api/auth_test.go @@ -8,8 +8,8 @@ import ( "github.com/gin-gonic/gin" "github.com/stretchr/testify/assert" - "github.com/Pterodactyl/wings/config" - "github.com/Pterodactyl/wings/control" + "github.com/pterodactyl/wings/config" + "github.com/pterodactyl/wings/control" ) const configFile = "_testdata/config.yml" diff --git a/api/handlers.go b/api/handlers.go index acb97dc..83cff30 100644 --- a/api/handlers.go +++ b/api/handlers.go @@ -4,8 +4,8 @@ import ( "net/http" "runtime" - "github.com/Pterodactyl/wings/constants" "github.com/gin-gonic/gin" + "github.com/pterodactyl/wings/constants" "github.com/shirou/gopsutil/cpu" "github.com/shirou/gopsutil/host" "github.com/shirou/gopsutil/mem" diff --git a/api/handlers_server.go b/api/handlers_server.go index 608cb54..09b10c3 100644 --- a/api/handlers_server.go +++ b/api/handlers_server.go @@ -3,8 +3,8 @@ package api import ( "net/http" - "github.com/Pterodactyl/wings/control" "github.com/gin-gonic/gin" + "github.com/pterodactyl/wings/control" log "github.com/sirupsen/logrus" ) diff --git a/api/handlers_server_test.go b/api/handlers_server_test.go index 25d15d9..34d3911 100644 --- a/api/handlers_server_test.go +++ b/api/handlers_server_test.go @@ -8,8 +8,8 @@ import ( "net/http/httptest" "testing" - "github.com/Pterodactyl/wings/control" "github.com/gin-gonic/gin" + "github.com/pterodactyl/wings/control" "github.com/stretchr/testify/assert" ) diff --git a/api/utils.go b/api/utils.go index d9a972e..c748c3a 100644 --- a/api/utils.go +++ b/api/utils.go @@ -1,8 +1,8 @@ package api import ( - "github.com/Pterodactyl/wings/control" "github.com/gin-gonic/gin" + "github.com/pterodactyl/wings/control" ) func getServerFromContext(context *gin.Context) control.Server { diff --git a/command/root.go b/command/root.go index cdcbcc4..272b1ea 100644 --- a/command/root.go +++ b/command/root.go @@ -6,11 +6,11 @@ import ( "github.com/spf13/viper" - "github.com/Pterodactyl/wings/api" - "github.com/Pterodactyl/wings/config" - "github.com/Pterodactyl/wings/constants" - "github.com/Pterodactyl/wings/control" - "github.com/Pterodactyl/wings/utils" + "github.com/pterodactyl/wings/api" + "github.com/pterodactyl/wings/config" + "github.com/pterodactyl/wings/constants" + "github.com/pterodactyl/wings/control" + "github.com/pterodactyl/wings/utils" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) diff --git a/control/docker_environment.go b/control/docker_environment.go index f9dd19f..8ae0051 100644 --- a/control/docker_environment.go +++ b/control/docker_environment.go @@ -6,9 +6,10 @@ import ( "os" "strings" - "github.com/Pterodactyl/wings/constants" + "github.com/pterodactyl/wings/constants" "github.com/fsouza/go-dockerclient" + "github.com/pterodactyl/wings/api/websockets" log "github.com/sirupsen/logrus" ) diff --git a/control/server.go b/control/server.go index 26fadbd..715636c 100644 --- a/control/server.go +++ b/control/server.go @@ -8,8 +8,7 @@ import ( "path/filepath" "strings" - "github.com/Pterodactyl/wings/config" - "github.com/Pterodactyl/wings/constants" + "github.com/pterodactyl/wings/api/websockets" log "github.com/sirupsen/logrus" "github.com/spf13/viper" ) diff --git a/utils/logging.go b/utils/logging.go index 6312779..d1a6851 100644 --- a/utils/logging.go +++ b/utils/logging.go @@ -5,14 +5,14 @@ import ( "path/filepath" "time" - "github.com/Pterodactyl/wings/constants" + "github.com/pterodactyl/wings/constants" rotatelogs "github.com/lestrrat/go-file-rotatelogs" "github.com/rifflock/lfshook" log "github.com/sirupsen/logrus" "github.com/spf13/viper" - "github.com/Pterodactyl/wings/config" + "github.com/pterodactyl/wings/config" ) // InitLogging initalizes the logging library for first use. diff --git a/wings.go b/wings.go index 68f8c0e..99a4704 100644 --- a/wings.go +++ b/wings.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/Pterodactyl/wings/command" + "github.com/pterodactyl/wings/command" ) func main() {