summaryrefslogtreecommitdiff
path: root/internal/api/profiles/profiles.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-02-07 13:50:00 +0100
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2024-02-19 14:15:07 +0100
commit9cbe11f260ea9bede2ddc25c689e2761ae14039f (patch)
tree4db30293a1b3db20565c912a49e5ae685d63ed8e /internal/api/profiles/profiles.go
parentce52709e35bc92d12f3a94f6d0b521ef6ab69859 (diff)
Format: Run gofumpt
Diffstat (limited to 'internal/api/profiles/profiles.go')
-rw-r--r--internal/api/profiles/profiles.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/api/profiles/profiles.go b/internal/api/profiles/profiles.go
index 7b9dafc..111a835 100644
--- a/internal/api/profiles/profiles.go
+++ b/internal/api/profiles/profiles.go
@@ -6,12 +6,12 @@ import (
)
type Profile struct {
- ID string `json:"profile_id"`
- DisplayName string `json:"display_name"`
- VPNProtoList []string `json:"vpn_proto_list"`
+ ID string `json:"profile_id"`
+ DisplayName string `json:"display_name"`
+ VPNProtoList []string `json:"vpn_proto_list"`
VPNProtoTransportList []string `json:"vpn_proto_transport_list"`
- DefaultGateway bool `json:"default_gateway"`
- DNSSearchDomains []string `json:"dns_search_domain_list"`
+ DefaultGateway bool `json:"default_gateway"`
+ DNSSearchDomains []string `json:"dns_search_domain_list"`
}
type ListInfo struct {