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