initial commit

This commit is contained in:
Adam Mohammed
2023-05-30 13:55:28 -04:00
commit 1e6a5fa8a9
11 changed files with 301 additions and 0 deletions

18
lib/resource_owner.ex Normal file
View File

@@ -0,0 +1,18 @@
defmodule ResourceOwner do
@moduledoc """
Documentation for `ResourceOwner`.
"""
@doc """
Hello world.
## Examples
iex> ResourceOwner.hello()
:world
"""
def hello do
:world
end
end