mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
9 lines
235 B
Go
9 lines
235 B
Go
package model
|
|
|
|
// ClientDefaults Defaults for creation of new clients used in the templates
|
|
type ClientDefaults struct {
|
|
AllowedIps []string
|
|
ExtraAllowedIps []string
|
|
UseServerDNS bool
|
|
EnableAfterCreation bool
|
|
}
|