summaryrefslogtreecommitdiff
path: root/lib/matrix_app_service/phoenix/controllers/v1/third_party_controller.ex
blob: 32b7e7b47669c993b01fbc6fbec58d18717e6ccf (plain) (blame)
1
2
3
4
5
6
7
defmodule MatrixAppService.Phoenix.V1.ThirdPartyController do
  use MatrixAppService.Phoenix, :controller

  def show(conn, _params) do
    send_resp(conn, 200, "")
  end
end