maximo tejeda baa2d658af
All checks were successful
dev test / test (push) Successful in 18s
dev test / vulnCheck (push) Successful in 13s
dev test / Ci-Lint (push) Successful in 38s
change repo name
2024-12-02 22:56:57 -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)
}