summaryrefslogtreecommitdiff
path: root/test/support/test_transaction_adapter.ex
blob: c39371bce90a0325209046b0bcaa30caeb2adc2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
defmodule MatrixAppService.TestTransactionAdapter do
  require Logger
  @behaviour MatrixAppService.Adapter.Transaction

  @impl MatrixAppService.Adapter.Transaction
  def new_event(%MatrixAppService.Event{}) do
    Logger.error("got an event")
    nil
  end
end