14 lines
287 B
Go
14 lines
287 B
Go
package ports
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
|
|
"github.com/maximotejeda/us_dop_scrapper/internal/application/core/domain"
|
|
"github.com/playwright-community/playwright-go"
|
|
)
|
|
|
|
type APIPorts interface {
|
|
Scrape(context.Context, playwright.Page, *slog.Logger) ([]*domain.History, error)
|
|
}
|