mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-28 22:12:00 -08:00
9 lines
300 B
Go
9 lines
300 B
Go
package defs
|
|
|
|
// PathManager is a path manager.
|
|
type PathManager interface {
|
|
GetConfForPath(req PathGetConfForPathReq) PathGetConfForPathRes
|
|
Describe(req PathDescribeReq) PathDescribeRes
|
|
AddPublisher(req PathAddPublisherReq) PathAddPublisherRes
|
|
AddReader(req PathAddReaderReq) PathAddReaderRes
|
|
}
|