Current section

Files

Jump to
call lib call.ex
Raw

lib/call.ex

defmodule Call do
def db(n) do
load("DB_" <> n)
end
def load(n) do
System.fetch_env!(n |> String.upcase)
end
end