mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 18:24:58 +00:00
57c2d5aecb
* add playback server * add playback switch * update readme
10 lines
294 B
Go
10 lines
294 B
Go
package defs
|
|
|
|
// PathManager is a path manager.
|
|
type PathManager interface {
|
|
FindPathConf(req PathFindPathConfReq) PathFindPathConfRes
|
|
Describe(req PathDescribeReq) PathDescribeRes
|
|
AddPublisher(req PathAddPublisherReq) PathAddPublisherRes
|
|
AddReader(req PathAddReaderReq) PathAddReaderRes
|
|
}
|