AnalyticsService.swift 330 B

12345678910111213141516
  1. //
  2. // AnalyticsService.swift
  3. // LoopKit
  4. //
  5. // Created by Darin Krauss on 5/11/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol AnalyticsService: Service {
  10. func recordAnalyticsEvent(_ name: String, withProperties properties: [AnyHashable: Any]?, outOfSession: Bool)
  11. }