diff --git a/utils/config/config.go b/config/config.go similarity index 100% rename from utils/config/config.go rename to config/config.go diff --git a/http/server.go b/http/server.go index 7aec99a..ec17eac 100644 --- a/http/server.go +++ b/http/server.go @@ -9,12 +9,12 @@ import ( "time" "Moonshark/color" + "Moonshark/config" "Moonshark/metadata" "Moonshark/router" "Moonshark/runner" "Moonshark/sessions" "Moonshark/utils" - "Moonshark/utils/config" "Moonshark/utils/logger" "github.com/valyala/fasthttp" diff --git a/moonshark.go b/moonshark.go index 31af1b4..e7f1d38 100644 --- a/moonshark.go +++ b/moonshark.go @@ -14,13 +14,13 @@ import ( "time" "Moonshark/color" + "Moonshark/config" "Moonshark/http" "Moonshark/metadata" "Moonshark/router" "Moonshark/runner" "Moonshark/runner/lualibs" "Moonshark/sessions" - "Moonshark/utils/config" "Moonshark/utils/logger" "Moonshark/watchers" diff --git a/utils/debug.go b/utils/debug.go index 1925b50..aeed809 100644 --- a/utils/debug.go +++ b/utils/debug.go @@ -7,8 +7,8 @@ import ( "strings" "time" + "Moonshark/config" "Moonshark/metadata" - "Moonshark/utils/config" ) // ComponentStats holds stats from various system components