lib/data_provider.ex

defmodule DataProvider do
  @moduledoc """
  Documentation for `DataProvider`.
  """

  @doc """
  Hello world.

  ## Examples

      iex> DataProvider.hello()
      :world

  """
  def hello do
    :world
  end
end