Refactor instance management and add InstanceManager interface

This commit is contained in:
2025-07-18 17:53:22 +02:00
parent 40b020ff3e
commit b0873d5629
5 changed files with 185 additions and 24 deletions

View File

@@ -2,7 +2,12 @@ module llamactl
go 1.24.5
require github.com/go-chi/chi/v5 v5.2.2
require (
github.com/go-chi/chi/v5 v5.2.2
github.com/google/uuid v1.6.0
github.com/swaggo/http-swagger v1.3.4
github.com/swaggo/swag v1.16.5
)
require (
github.com/KyleBanks/depth v1.2.1 // indirect
@@ -13,13 +18,9 @@ require (
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.9.0 // indirect
github.com/swaggo/files v1.0.1 // indirect
github.com/swaggo/http-swagger v1.3.4 // indirect
github.com/swaggo/swag v1.16.5 // indirect
golang.org/x/mod v0.26.0 // indirect
golang.org/x/net v0.42.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.34.0 // indirect
golang.org/x/tools v0.35.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)