fp/apps/bright/lib/bright/events.ex
CJ_Clippy aa75c224fc
Some checks failed
ci / build (push) Failing after 23m29s
ci / Tests & Checks (push) Failing after 3m32s
move services/bright to apps/bright
2025-02-10 08:16:50 -08:00

22 lines
428 B
Elixir

defmodule Bright.Events do
defmodule ThumbnailsGenerated do
defstruct vod: nil
end
defmodule ProcessingQueued do
defstruct vod: nil
end
defmodule ProcessingProgressed do
defstruct vod: nil, stage: nil, pct: nil
end
defmodule ProcessingCompleted do
defstruct vod: nil, action: nil, url: nil
end
defmodule ProcessingFailed do
defstruct vod: nil, attempt: nil, max_attempts: nil
end
end