fix: Resolve playwright function deprecations and io/ioutil function deprecations.

This commit is contained in:
2024-09-24 15:13:36 -05:00
parent 1869dae89a
commit 333b9a366c
5 changed files with 280 additions and 270 deletions

View File

@@ -103,7 +103,7 @@ func mockExtractAndConvertContent(urlStr string) (string, error) {
return "Mocked content for " + urlStr, nil
}
func mockExtractLinks(urlStr string) ([]string, error) {
func mockExtractLinks() ([]string, error) {
return []string{"http://example.com/link1", "http://example.com/link2"}, nil
}