maximo tejeda e986d8884a
Some checks failed
dev test / test (push) Failing after 52s
dev test / vulnCheck (push) Has been skipped
dev test / Ci-Lint (push) Has been skipped
fix imports
2024-12-02 20:11:31 -04:00

14 lines
291 B
Go

package ports
import (
"context"
"log/slog"
"git.maximotejeda.com/maximo/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)
}