mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 03:34:45 +00:00
13 lines
265 B
Go
13 lines
265 B
Go
package core
|
|
|
|
// source is an entity that can provide a stream, statically or dynamically.
|
|
type source interface {
|
|
onSourceAPIDescribe() interface{}
|
|
}
|
|
|
|
// sourceStatic is an entity that can provide a static stream.
|
|
type sourceStatic interface {
|
|
source
|
|
close()
|
|
}
|