feat: removed the Telemetry module from the Stats since it does not do anything for a long time

This commit is contained in:
Serhiy Mytrovtsiy
2025-11-29 16:31:23 +01:00
parent 15075bc7f1
commit f5e7da4221
7 changed files with 6 additions and 108 deletions

View File

@@ -1,23 +0,0 @@
//
// Telemetry.swift
// Kit
//
// Created by Serhiy Mytrovtsiy on 18/06/2023
// Using Swift 5.0
// Running on macOS 13.4
//
// Copyright © 2023 Serhiy Mytrovtsiy. All rights reserved.
//
import Foundation
public class Telemetry {
public static let shared = Telemetry()
public var isEnabled: Bool {
get { Store.shared.bool(key: "telemetry", defaultValue: true) }
set { Store.shared.set(key: "telemetry", value: newValue) }
}
public init() {}
}