Packages

Library for manipulating and converting subtitles

Current section

Files

Jump to
subtitles lib subtitle.ex
Raw

lib/subtitle.ex

defmodule Subtitle do
@enforce_keys [:cues]
defstruct [:cues]
def new(cues), do: %Subtitle{cues: cues}
end