wireguard-ui/model/misc.go
Arminas 12d0dc6288
Added branding settings page
Added branding settings page, where you can change favicon, brand name and brand logo from UI.
2023-02-18 07:31:37 +02:00

14 lines
270 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
BrandName string
}