lib/polymarket.ex
defmodule Polymarket do
@moduledoc """
Documentation for `Polymarket`.
"""
@doc """
Hello world.
## Examples
iex> Polymarket.hello()
:world
"""
@spec hello() :: :world
def hello do
:world
end
end