ee20e03cc2
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
491 B
Elixir
18 lines
491 B
Elixir
defmodule Mobilizon.Service.Pictures do
|
|
@moduledoc """
|
|
Module to load the service adapter defined inside the configuration.
|
|
|
|
See `Mobilizon.Service.Pictures.Provider`.
|
|
"""
|
|
|
|
@doc """
|
|
Returns the appropriate service adapter.
|
|
|
|
According to the config behind
|
|
`config :mobilizon, Mobilizon.Service.Pictures,
|
|
service: Mobilizon.Service.Pictures.Module`
|
|
"""
|
|
@spec service :: module
|
|
def service, do: get_in(Application.get_env(:mobilizon, __MODULE__), [:service])
|
|
end
|