15 lines
344 B
Go
15 lines
344 B
Go
|
package bootoption
|
||
|
|
||
|
type EFIApp struct {
|
||
|
Name string `json:"name"`
|
||
|
Description string `json:"description"`
|
||
|
Path string `json:"path"`
|
||
|
}
|
||
|
|
||
|
type Client struct {
|
||
|
IP string `json:"ip"`
|
||
|
Name string `json:"name"`
|
||
|
Options []EFIApp `json:"options"`
|
||
|
SelectedOption string `json:"selected_option"`
|
||
|
}
|