Network_configurator_PI/models/interface_IPs_response.go
2025-03-12 22:35:36 +03:00

9 lines
312 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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