mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-09-26 19:11:11 +08:00
9 lines
189 B
Go
9 lines
189 B
Go
package streamers
|
|
|
|
import "github.com/flavioribeiro/donut/internal/entities"
|
|
|
|
type DonutStreamer interface {
|
|
Stream(p *entities.DonutParameters)
|
|
Match(req *entities.RequestParams) bool
|
|
}
|