mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-10-15 12:00:41 +08:00
10 lines
71 B
Go
10 lines
71 B
Go
package recoder
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Input interface {
|
|
io.Closer
|
|
}
|