16 lines
493 B
Elixir
16 lines
493 B
Elixir
|
defmodule Mobilizon.Service.Geospatial do
|
||
|
@moduledoc """
|
||
|
Module to load the service adapter defined inside the configuration
|
||
|
|
||
|
See `Mobilizon.Service.Geospatial.Provider`
|
||
|
"""
|
||
|
|
||
|
@doc """
|
||
|
Returns the appropriate service adapter
|
||
|
|
||
|
According to the config behind `config :mobilizon, Mobilizon.Service.Geospatial, service: Mobilizon.Service.Geospatial.Module`
|
||
|
"""
|
||
|
@spec service() :: module()
|
||
|
def service(), do: Application.get_env(:mobilizon, __MODULE__) |> get_in([:service])
|
||
|
end
|