Packages

Fetching json api data from some of the available endpoints of meduza.io

Current section

Files

Jump to
el_meduza lib application.ex
Raw

lib/application.ex

defmodule ElMeduza.Application do
@moduledoc """
ElMeduza Supervisor
"""
use Application
def start(_type, _args) do
children = []
opts = [strategy: :one_for_one, name: ElMeduza.Supervisor]
Supervisor.start_link(children, opts)
end
end