mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-11 01:19:35 +00:00
9 lines
150 B
Go
9 lines
150 B
Go
package core
|
|
|
|
// reader is an entity that can read a stream.
|
|
type reader interface {
|
|
close()
|
|
onReaderData(*data)
|
|
apiReaderDescribe() interface{}
|
|
}
|