Skip to content

Instantly share code, notes, and snippets.

@quintonpryce
Created July 18, 2019 19:25
Show Gist options
  • Save quintonpryce/72085fb10507df690b6a8ddc43ec71fd to your computer and use it in GitHub Desktop.
Save quintonpryce/72085fb10507df690b6a8ddc43ec71fd to your computer and use it in GitHub Desktop.
Analytics Core Contract
public protocol AnalyticsScope {
func track(event: AnalyticsEvent)
func track<T: AnalyticsParameter>(event: AnalyticsEvent, with parameters: T)
func addEventTracker(key: EventTrackerKey, tracker: EventTracker)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment