summaryrefslogtreecommitdiff
path: root/test/support/http_signatures_proxy.ex
blob: 4c6b39d19c74de857dc49e47e82f1071b7622bb7 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Test.HTTPSignaturesProxy do
  @behaviour Pleroma.HTTPSignaturesAPI

  @impl true
  defdelegate validate_conn(conn), to: HTTPSignatures

  @impl true
  defdelegate signature_for_conn(conn), to: HTTPSignatures
end