blob: a7bf70420d49d643c059483208733784342dbff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
defmodule Mediasync do
@moduledoc """
Documentation for `Mediasync`.
"""
@doc """
Hello world.
## Examples
iex> Mediasync.hello()
:world
"""
def hello do
:world
end
end
|