diff options
author | Hentioe <me@bluerain.io> | 2020-10-18 02:31:43 +0800 |
---|---|---|
committer | Hentioe <me@bluerain.io> | 2020-10-18 02:31:43 +0800 |
commit | b2177236cec81b7f5cf6caeb8615750235ac1561 (patch) | |
tree | 6fc4d83b3f44e0d967df64b109fa5afeab2007bb /lib/azure_ex.ex |
Init
Diffstat (limited to 'lib/azure_ex.ex')
-rw-r--r-- | lib/azure_ex.ex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/azure_ex.ex b/lib/azure_ex.ex new file mode 100644 index 0000000..36dea15 --- /dev/null +++ b/lib/azure_ex.ex @@ -0,0 +1,18 @@ +defmodule AzureEx do + @moduledoc """ + Documentation for `AzureEx`. + """ + + @doc """ + Hello world. + + ## Examples + + iex> AzureEx.hello() + :world + + """ + def hello do + :world + end +end |