mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-27 02:10:27 +00:00
48935e2168
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
507 B
Elixir
17 lines
507 B
Elixir
defmodule Mobilizon.Service.GlobalSearch do
|
|
@moduledoc """
|
|
Module to load the service adapter defined inside the configuration.
|
|
|
|
See `Mobilizon.Service.GlobalSearch.Provider`.
|
|
"""
|
|
|
|
@doc """
|
|
Returns the appropriate service adapter.
|
|
|
|
According to the config behind
|
|
`config :mobilizon, Mobilizon.Service.GlobalSearch,
|
|
service: Mobilizon.Service.GlobalSearch.Module`
|
|
"""
|
|
@spec service :: module
|
|
def service, do: get_in(Application.get_env(:mobilizon, __MODULE__), [:service])
|
|
end
|