1defmoduleDrinkup.Tap.Consumerdo 2@moduledoc"""
3Behaviour for handling Tap events. 4 5 Implemented by `Drinkup.Tap`, you'll likely want to be using that instead. 6 """ 7 8aliasDrinkup.Tap.Event 910@callbackhandle_event(Event.Record.t()|Event.Identity.t())::any()11end