diff options
Diffstat (limited to 'lib/mediasync.ex')
-rw-r--r-- | lib/mediasync.ex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/mediasync.ex b/lib/mediasync.ex new file mode 100644 index 0000000..a7bf704 --- /dev/null +++ b/lib/mediasync.ex @@ -0,0 +1,18 @@ +defmodule Mediasync do + @moduledoc """ + Documentation for `Mediasync`. + """ + + @doc """ + Hello world. + + ## Examples + + iex> Mediasync.hello() + :world + + """ + def hello do + :world + end +end |