mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-11 11:31:32 +00:00
10 lines
230 B
Elixir
10 lines
230 B
Elixir
|
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
|