ash_csv/lib/ash_csv.ex
Zach Daniel 87ac360eb0
init
2020-08-19 17:09:22 -04:00

18 lines
198 B
Elixir

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