mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-15 11:07:28 +00:00
8 lines
113 B
Go
8 lines
113 B
Go
package defs
|
|
|
|
// Publisher is an entity that can publish a stream.
|
|
type Publisher interface {
|
|
Source
|
|
Close()
|
|
}
|