mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-20 22:21:01 +00:00
10 lines
300 B
Go
10 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
|
|
}
|