Network_configurator_PI/models/interface_IPs_response.go

9 lines
312 B
Go
Raw Permalink Normal View History

2025-03-12 22:35:36 +03:00
package models
// InterfaceIPsResponse структура для JSON ответа со списком IP адресов интерфейса
type InterfaceIPsResponse struct {
Interface string `json:"interface"`
IPAddresses []string `json:"ip_addresses"`
Error string `json:"error,omitempty"`
}