mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-09-27 03:15:54 +08:00
8 lines
187 B
Go
8 lines
187 B
Go
package probers
|
|
|
|
import "github.com/flavioribeiro/donut/internal/entities"
|
|
|
|
type Prober interface {
|
|
StreamInfo(req *entities.RequestParams) (map[entities.Codec]entities.Stream, error)
|
|
}
|