defmodule Ghibli do @moduledoc false @doc """ Returns the base URL for the API. This is used to set a different URL in testing. See `config/config.exs` and the test files. """ def url do Application.get_env(:ghibli, :base_url) end end