mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 21:28:29 +03:00
Add comment to explain what this service does
This commit is contained in:
parent
a3e890ff7a
commit
c4f30210ac
1 changed files with 3 additions and 0 deletions
|
@ -21,6 +21,9 @@ type FileWriterReceiverServiceCallback interface {
|
|||
}
|
||||
|
||||
// FileWriterReceiverService accepts transcoder responses via HTTP and fires the callbacks.
|
||||
// It is intended to be the middleman between the transcoder and the storage provider and allows
|
||||
// the transcoder process to be completely isolated and even run remotely in the future, as long
|
||||
// as it can send HTTP requests to this service with the results.
|
||||
type FileWriterReceiverService struct {
|
||||
callbacks FileWriterReceiverServiceCallback
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue