Update import paths to use the new config module; remove internal references

This commit is contained in:
alex
2025-06-22 17:12:07 +03:00
parent 27bda702bd
commit 5326dd45b6
4 changed files with 7 additions and 7 deletions

View File

@@ -5,9 +5,9 @@ import (
"net/http"
"regexp"
"github.com/akyaiy/GoSally-mvp/internal/config"
"github.com/akyaiy/GoSally-mvp/internal/logs"
"github.com/akyaiy/GoSally-mvp/internal/v1"
"github.com/akyaiy/GoSally-mvp/config"
"github.com/akyaiy/GoSally-mvp/logs"
"github.com/akyaiy/GoSally-mvp/v1"
"github.com/go-chi/chi/v5"
)