mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-10-04 06:36:26 +08:00
9 lines
219 B
Go
9 lines
219 B
Go
package probers
|
|
|
|
import "github.com/flavioribeiro/donut/internal/entities"
|
|
|
|
type DonutProber interface {
|
|
StreamInfo(req entities.DonutAppetizer) (*entities.StreamInfo, error)
|
|
Match(req *entities.RequestParams) bool
|
|
}
|