mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-06 17:14:28 +00:00
20 lines
306 B
Go
20 lines
306 B
Go
package llamactl
|
|
|
|
type Instance struct {
|
|
Status string
|
|
Options *LlamaServerOptions
|
|
}
|
|
|
|
type InstanceManager interface {
|
|
}
|
|
|
|
type instanceManager struct {
|
|
instances map[string]*Instance
|
|
}
|
|
|
|
func NewInstanceManager() InstanceManager {
|
|
return &instanceManager{
|
|
instances: make(map[string]*Instance),
|
|
}
|
|
}
|