1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Foundation enum PremiumAccessService { static func hasAccess(to capability: PremiumCapability) -> Bool { true } static func trackedDomainLimitMessage(currentCount: Int) -> String? { nil } static func canAddTrackedDomain(currentCount: Int) -> Bool { true } }