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

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