mirror of
https://github.com/swissmakers/wireguard-manager.git
synced 2026-04-05 10:47:05 +02:00
15 lines
268 B
Go
15 lines
268 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
|
|
Admin bool
|
|
}
|