mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-05 16:44:22 +00:00
13 lines
155 B
Go
13 lines
155 B
Go
package llamactl
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Instance struct {
|
|
ID uuid.UUID
|
|
Port int
|
|
Status string
|
|
Options *InstanceOptions
|
|
}
|