Packages

A small library for interacting with CKAN (ckan.org) instances

Current section

Files

Jump to
ckan lib ckan.ex
Raw

lib/ckan.ex

defmodule CKAN do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = []
opts = [strategy: :one_for_one, name: CKAN.Supervisor]
Supervisor.start_link(children, opts)
end
end