mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
13 lines
250 B
Go
13 lines
250 B
Go
package model
|
|
|
|
// Interface model
|
|
type Interface struct {
|
|
Name string `json:"name"`
|
|
IPAddress string `json:"ip_address"`
|
|
}
|
|
|
|
// BaseData struct to pass value to the base template
|
|
type BaseData struct {
|
|
Active string
|
|
CurrentUser string
|
|
}
|