Files
llamactl/server/pkg/instance.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
}