mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
15 lines
301 B
Go
15 lines
301 B
Go
package defs
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/bluenviron/mediamtx/internal/conf"
|
|
)
|
|
|
|
// StaticSourceRunParams is the set of params passed to Run().
|
|
type StaticSourceRunParams struct {
|
|
Context context.Context
|
|
ResolvedSource string
|
|
Conf *conf.Path
|
|
ReloadConf chan *conf.Path
|
|
}
|