9 lines
261 B
Go
9 lines
261 B
Go
|
|
package models
|
|||
|
|
|
|||
|
|
// MacAddressResponse структура для JSON ответа с MAC адресом
|
|||
|
|
type MacAddressResponse struct {
|
|||
|
|
MacAddress string `json:"mac_address"`
|
|||
|
|
Interface string `json:"interface"`
|
|||
|
|
Error string `json:"error,omitempty"`
|
|||
|
|
}
|