defmodule ExCoinglass do @moduledoc """ Documentation for `ExCoinglass`. """ @doc """ Hello world. ## Examples iex> ExCoinglass.hello() :world """ def hello do :world end end