forked from External/mediamtx
10 lines
194 B
Go
10 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{}
|
|
}
|