Refactor internal server structure: remove v1 package and migrate functionality to a new v1 module; update dependencies and improve command handling.

This commit is contained in:
alex
2025-06-22 17:01:14 +03:00
parent 213db0b8c7
commit c15e6c5b15
8 changed files with 11 additions and 11 deletions

17
internal/v1/go.mod Normal file
View File

@@ -0,0 +1,17 @@
module github.com/akyaiy/GoSally-mvp/internal/v1
go 1.24.4
require (
github.com/akyaiy/GoSally-mvp/internal/config v0.0.0-20250622085654-213db0b8c73b
github.com/go-chi/chi/v5 v5.2.2
github.com/yuin/gopher-lua v1.1.1
)
require (
github.com/BurntSushi/toml v1.5.0 // indirect
github.com/ilyakaznacheev/cleanenv v1.5.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
)