mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 08:12:25 +00:00
- Modify .luarc.json to include global Lua scripts. - Update Makefile to include LDFLAGS for versioning. - Enhance node.go to implement version checking and update handling. - Refactor Lua global variables in _globals.lua and echo.lua to use new structures. - Remove deprecated http.lua and update config.yaml for TLS and update settings. - Introduce new update.go for version management and update checking. - Add tests for version comparison in update_test.go. - Improve error handling in various server methods.
18 lines
412 B
Modula-2
18 lines
412 B
Modula-2
module github.com/akyaiy/GoSally-mvp
|
|
|
|
go 1.24.4
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.2
|
|
github.com/ilyakaznacheev/cleanenv v1.5.0
|
|
github.com/yuin/gopher-lua v1.1.1
|
|
golang.org/x/net v0.41.0
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml 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
|
|
)
|