mirror of
https://github.com/swissmakers/wireguard-manager.git
synced 2026-04-11 13:47:05 +02:00
8 lines
130 B
Go
8 lines
130 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// Interface model
|
||
|
|
type Interface struct {
|
||
|
|
Name string `json:"name"`
|
||
|
|
IPAddress string `json:"ip_address"`
|
||
|
|
}
|