Files
rtsp-simple-server/internal/defs/static_source.go
2025-07-27 12:01:52 +02:00

16 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
}