mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-09-26 19:51:26 +08: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()
|
|
}
|