blob: 90e4849882a181e77ae59a5ba8995f9753d58e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// ApplicationConfiguration.swift
// MullvadVPN
//
// Created by pronebird on 05/06/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import Foundation
class ApplicationConfiguration {
/// The application group identifier used for sharing application preferences between processes
static let securityGroupIdentifier = "group.net.mullvad.MullvadVPN"
/// The application identifier for the PacketTunnel extension
static let packetTunnelExtensionIdentifier = "net.mullvad.MullvadVPN.PacketTunnel"
}
|