1
0
mirror of https://github.com/algora-io/tv.git synced 2025-03-17 20:17:45 +02:00

30 lines
574 B
Elixir
Raw Normal View History

2024-02-29 22:31:42 +03:00
defmodule Algora.Library.Events do
defmodule LivestreamStarted do
defstruct video: nil
end
defmodule LivestreamEnded do
defstruct video: nil
end
defmodule ThumbnailsGenerated do
defstruct video: nil
end
2024-04-01 18:39:03 +03:00
defmodule ProcessingQueued do
defstruct video: nil
end
defmodule ProcessingProgressed do
defstruct video: nil, stage: nil, pct: nil
end
defmodule ProcessingCompleted do
defstruct video: nil, action: nil, url: nil
end
defmodule ProcessingFailed do
defstruct video: nil, attempt: nil, max_attempts: nil
end
2024-02-29 22:31:42 +03:00
end