defmodule Excontentstack do @moduledoc """ Elixir wrapper for Contentstack's Management and Delivery APIs. ## Usage ### Management API client = Excontentstack.Management.new( management_token: "your_management_token", api_key: "your_api_key", master_locale: "en-us" ) ### Delivery API client = Excontentstack.Delivery.new( delivery_token: "your_delivery_token", api_key: "your_api_key", environment: "live", master_locale: "en-us" ) """ end