mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-13 03:14:11 +08: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
|
|
}
|