mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
17 lines
425 B
Swift
17 lines
425 B
Swift
//
|
|
// LockdownStorageIdentifier.swift
|
|
// LockdowniOS
|
|
//
|
|
// Created by Aliaksandr Dvoineu on 4.05.23.
|
|
// Copyright © 2023 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
public struct LockdownStorageIdentifier {
|
|
|
|
private init() {}
|
|
|
|
static let keychainId = "com.confirmed.tunnels"
|
|
static let userDefaultsId = "group.com.confirmed"
|
|
static let contentBlockerId = "com.confirmed.lockdown.Confirmed-Blocker"
|
|
}
|