mediamtx/internal/core/publisher.go

8 lines
113 B
Go
Raw Normal View History

package core
2022-04-09 11:16:59 +00:00
// publisher is an entity that can publish a stream.
type publisher interface {
source
2021-10-27 19:01:00 +00:00
close()
}