http-boot-server/bootserver/bootoption/bootoption.go

15 lines
357 B
Go

package bootoption
import "github.com/google/uuid"
type EFIApp struct {
Name string `json:"name"`
DevicePath string `json:"device_path"`
}
type Client struct {
ID uuid.UUID
Name string `json:"name"`
Options map[string]EFIApp `json:"options"`
SelectedOption string `json:"selected_option"`
}