move config to top level

This commit is contained in:
Sky Johnson 2025-06-05 20:25:38 -05:00
parent 0c87d0d704
commit 60dd7ba82f
4 changed files with 3 additions and 3 deletions

View File

@ -9,12 +9,12 @@ import (
"time" "time"
"Moonshark/color" "Moonshark/color"
"Moonshark/config"
"Moonshark/metadata" "Moonshark/metadata"
"Moonshark/router" "Moonshark/router"
"Moonshark/runner" "Moonshark/runner"
"Moonshark/sessions" "Moonshark/sessions"
"Moonshark/utils" "Moonshark/utils"
"Moonshark/utils/config"
"Moonshark/utils/logger" "Moonshark/utils/logger"
"github.com/valyala/fasthttp" "github.com/valyala/fasthttp"

View File

@ -14,13 +14,13 @@ import (
"time" "time"
"Moonshark/color" "Moonshark/color"
"Moonshark/config"
"Moonshark/http" "Moonshark/http"
"Moonshark/metadata" "Moonshark/metadata"
"Moonshark/router" "Moonshark/router"
"Moonshark/runner" "Moonshark/runner"
"Moonshark/runner/lualibs" "Moonshark/runner/lualibs"
"Moonshark/sessions" "Moonshark/sessions"
"Moonshark/utils/config"
"Moonshark/utils/logger" "Moonshark/utils/logger"
"Moonshark/watchers" "Moonshark/watchers"

View File

@ -7,8 +7,8 @@ import (
"strings" "strings"
"time" "time"
"Moonshark/config"
"Moonshark/metadata" "Moonshark/metadata"
"Moonshark/utils/config"
) )
// ComponentStats holds stats from various system components // ComponentStats holds stats from various system components