chore: add YAML config loading and UUID dependencies

This commit is contained in:
Victor Hugo Vargas Servin 2026-06-30 23:53:15 -07:00
parent 8987266d1b
commit 2509029777
2 changed files with 11 additions and 1 deletions

6
go.mod
View file

@ -1,3 +1,7 @@
module github.com/VictorVargas/rony-llm-agent module github.com/VictorVargas/rony-llm-agent
go 1.26 go 1.26
require gopkg.in/yaml.v3 v3.0.1
require github.com/google/uuid v1.6.0 // indirect

6
go.sum Normal file
View file

@ -0,0 +1,6 @@
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=