Packages

Elixir wrapper for the Meetup.com public API.

Retired package: This library no longer conforms to the Meetup API. I am looking for a new maintainer if you'd like to take it over

Current section

Files

Jump to
meetup lib v3 meta.ex
Raw

lib/v3/meta.ex

defmodule Meetup.V3.Meta do
@moduledoc """
Handles endpoints related to meetup meta.
"""
@doc """
Returns the current API service status.
"""
def status do
path = "status"
Meetup.get(path, %{})
end
end