mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-09 07:58:04 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
package core
|
|
|
|
// source is an entity that can provide a stream.
|
|
// it can be:
|
|
// - a publisher
|
|
// - sourceStatic
|
|
// - sourceRedirect
|
|
type source interface {
|
|
onSourceAPIDescribe() interface{}
|
|
}
|