Merge pull request #534 from KentHsu/fix/go-sdk-module-name

fix: go-sdk module name
This commit is contained in:
Eric Ciarla
2024-08-13 13:53:28 +02:00
committed by GitHub
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ The Firecrawl Go SDK is a library that allows you to easily scrape and crawl web
To install the Firecrawl Go SDK, you can To install the Firecrawl Go SDK, you can
```bash ```bash
go get github.com/mendableai/firecrawl/go-sdk/firecrawl go get github.com/mendableai/firecrawl
``` ```
## Usage ## Usage
@@ -23,7 +23,7 @@ import (
"fmt" "fmt"
"log" "log"
"github.com/mendableai/firecrawl/go-sdk/firecrawl" "github.com/mendableai/firecrawl/firecrawl"
) )
func main() { func main() {
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"log" "log"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/mendableai/firecrawl/go-sdk/firecrawl" "github.com/mendableai/firecrawl/firecrawl"
) )
func main() { func main() {
+3 -3
View File
@@ -1,10 +1,10 @@
module github.com/mendableai/firecrawl/go-sdk/examples module github.com/mendableai/firecrawl/apps/go-sdk/examples
go 1.22.5 go 1.22.5
replace github.com/mendableai/firecrawl/go-sdk => ../ replace github.com/mendableai/firecrawl => ../
require ( require (
github.com/google/uuid v1.6.0 github.com/google/uuid v1.6.0
github.com/mendableai/firecrawl/go-sdk v0.0.0-00010101000000-000000000000 github.com/mendableai/firecrawl v0.0.0-00010101000000-000000000000
) )
+1 -1
View File
@@ -1,4 +1,4 @@
module github.com/mendableai/firecrawl/go-sdk module github.com/mendableai/firecrawl/apps/go-sdk
go 1.22.5 go 1.22.5