Melora Hugues
0b6bbce7d5
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
403 B
Go
17 lines
403 B
Go
package bootoption
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type EFIApp struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Path string `json:"path"`
|
|
}
|
|
|
|
type Client struct {
|
|
ID uuid.UUID
|
|
IP string `json:"ip"`
|
|
Name string `json:"name"`
|
|
Options []EFIApp `json:"options"`
|
|
SelectedOption string `json:"selected_option"`
|
|
}
|