Packages

milkpotion is an api wrapper for Remember the Milk

Current section

Files

Jump to
milkpotion lib milkpotion.ex
Raw

lib/milkpotion.ex

defmodule Milkpotion do
@doc """
Returns the application's api_key as configured in the
environment's config file.
"""
def api_key do
Application.get_env(:milkpotion, :api_key)
end
@doc """
Returns the application's shared_secret as configured in the
environment's config file.
"""
def shared_secret do
Application.get_env(:milkpotion, :shared_secret)
end
end