chore(playout): restructure modules (#1971)

This commit is contained in:
Jonas L 2022-07-18 15:11:47 +02:00 committed by GitHub
parent 57046e2a9d
commit 7e2f2d60f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 20 additions and 20 deletions

View file

@ -0,0 +1,10 @@
from enum import Enum
class EventKind(str, Enum):
FILE = "file"
EVENT = "event"
STREAM_BUFFER_START = "stream_buffer_start"
STREAM_OUTPUT_START = "stream_output_start"
STREAM_BUFFER_END = "stream_buffer_end"
STREAM_OUTPUT_END = "stream_output_end"