mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-09-27 03:56:15 +08:00
16 lines
301 B
Go
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
|
|
}
|