mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-10-10 17:30:09 +08:00
9 lines
191 B
Go
9 lines
191 B
Go
package streamers
|
|
|
|
import "github.com/flavioribeiro/donut/internal/entities"
|
|
|
|
type DonutStreamer interface {
|
|
Stream(sp *entities.StreamParameters)
|
|
Match(req *entities.RequestParams) bool
|
|
}
|