Current section

Files

Jump to
ex_video_factory lib ex_video_factory.ex
Raw

lib/ex_video_factory.ex

defmodule ExVideoFactory do
@moduledoc """
Documentation for ExVideoFactory.
"""
@doc """
Get list of videos.
## Examples
iex> ExVideoFactory.videos
%{videos: []}
"""
def videos do
list = []
%{videos: list}
end
end