Packages

Yet another wrapper around the GoogleCivivApi. Nothing to see here.

Current section

Files

Jump to
google_civic_api lib google_civic_api.ex
Raw

lib/google_civic_api.ex

defmodule GoogleCivicApi do
@moduledoc """
Documentation for `GoogleCivicApi`.
"""
alias GoogleCivicApi.Impl.Representatives
@doc """
Hello world.
## Examples
iex> GoogleCivicApi.hello()
:world
"""
def representatives_by_address(address) do
Representatives.by_address(address)
end
end