summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/rich_media/parsers/ogp.ex
blob: b7f2b4216829e099f40d14bb1e88b61d7be8e4d2 (plain)
1
2
3
4
5
6
7
8
9
10
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.RichMedia.Parsers.OGP do
  @deprecated "OGP parser is deprecated. Use TwitterCard instead."
  def parse(_html, _data) do
    %{}
  end
end