README.md
This is a basic Elixir wrapper for version 3 of the MailChimp API.
## Installation
First, add MailChimp lib to your `mix.exs` dependencies:
```elixir
def deps do
[{:mailchimp, "~> 0.0.1"}]
end
```
and run `$ mix deps.get`. Now, list the `:mailchimp` application as your
application dependency:
```elixir
def application do
[applications: [:mailchimp]]
end
```
## Usage
1. Put your API key in your *config.exs* file.
2. Start a new process:
Mailchimp.start_link
### Getting Account Details
Mailchimp.get_account_details/0
### Getting All Lists
Mailchimp.get_all_lists/0