mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-10-05 06:56:50 +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.RequestParams) (*entities.StreamInfo, error)
|
|
Match(req *entities.RequestParams) bool
|
|
}
|