mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-10 16:37:54 +00:00
8 lines
139 B
Go
8 lines
139 B
Go
package core
|
|
|
|
// reader is an entity that can read a stream.
|
|
type reader interface {
|
|
close()
|
|
apiReaderDescribe() pathAPISourceOrReader
|
|
}
|