blob: 197fb2a7779721d890c4cdafbbbc192ef9a2b2bd (
plain)
1
2
3
4
5
6
7
|
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Metadata.Providers.Provider do
@callback build_tags(map()) :: list()
end
|