mediamtx/internal/core/reader.go

8 lines
129 B
Go
Raw Normal View History

package core
// reader is an entity that can read a stream.
type reader interface {
2021-10-27 19:01:00 +00:00
close()
apiReaderDescribe() interface{}
}