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