mirror of
https://github.com/bluenviron/mediamtx
synced 2025-03-04 19:37:52 +00:00
8 lines
139 B
Go
8 lines
139 B
Go
|
package defs
|
||
|
|
||
|
// Reader is an entity that can read a stream.
|
||
|
type Reader interface {
|
||
|
Close()
|
||
|
APIReaderDescribe() APIPathSourceOrReader
|
||
|
}
|