mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01:00
13 lines
238 B
Elixir
13 lines
238 B
Elixir
|
defmodule Pleroma.Search do
|
||
|
@type search_map :: %{
|
||
|
statuses: [map],
|
||
|
accounts: [map],
|
||
|
hashtags: [map]
|
||
|
}
|
||
|
|
||
|
@doc """
|
||
|
Searches for stuff
|
||
|
"""
|
||
|
@callback search(map, map, keyword) :: search_map
|
||
|
end
|