move to 2.5.5
[anni] / lib / pleroma / http / web_push.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.HTTP.WebPush do
6   @moduledoc false
7
8   def post(url, payload, headers, options \\ []) do
9     list_headers = Map.to_list(headers)
10     Pleroma.HTTP.post(url, payload, list_headers, options)
11   end
12 end