Current section
Files
Jump to
Current section
Files
lib/assignment_logger.ex
defmodule EppoSdk.AssignmentLogger do
@moduledoc """
Behaviour for logging experiment assignments.
"""
@callback log_assignment(event :: map()) :: any()
@doc """
Default implementation that does nothing.
"""
def log_assignment(_event), do: nil
end