Packages

This library extracts the Mobilizon.Service.Geospatial module from Mobilizon.

Current section

Files

Jump to
geospatial lib application.ex
Raw

lib/application.ex

defmodule Geospatial.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [TzWorld.Backend.DetsWithIndexCache]
opts = [strategy: :one_for_one, name: Geospatial.Supervisor]
Supervisor.start_link(children, opts)
end
end