mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-07 08:31:02 +08:00
8 lines
113 B
Go
8 lines
113 B
Go
package core
|
|
|
|
// publisher is an entity that can publish a stream.
|
|
type publisher interface {
|
|
source
|
|
close()
|
|
}
|