Add Instance struct to manage server status and options

This commit is contained in:
2025-07-17 20:56:35 +02:00
parent e793b2c7c5
commit 8324b021f5

6
server/pkg/instance.go Normal file
View File

@@ -0,0 +1,6 @@
package llamactl
type Instance struct {
Status string
Options *LlamaServerOptions
}