mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-24 03:51:57 -08:00
7 lines
139 B
Go
7 lines
139 B
Go
package core
|
|
|
|
// reader is an entity that can read a stream.
|
|
type reader interface {
|
|
close()
|
|
apiReaderDescribe() pathAPISourceOrReader
|
|
}
|