fix mappers

This commit is contained in:
Leandro Moreira
2024-02-12 14:29:18 -03:00
parent dfedeee4e0
commit 53ed282056
3 changed files with 11 additions and 5 deletions

View File

@@ -3,5 +3,5 @@ package probers
import "github.com/flavioribeiro/donut/internal/entities"
type Prober interface {
StreamInfo(req *entities.RequestParams) (map[entities.Codec]entities.Stream, error)
StreamInfo(req *entities.RequestParams) (*entities.StreamInfo, error)
}