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
commit dd387c53c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

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
```bash
go get github.com/mendableai/firecrawl/go-sdk/firecrawl
go get github.com/mendableai/firecrawl
```
## Usage
@ -23,7 +23,7 @@ import (
"fmt"
"log"
"github.com/mendableai/firecrawl/go-sdk/firecrawl"
"github.com/mendableai/firecrawl/firecrawl"
)
func main() {

View File

@ -6,7 +6,7 @@ import (
"log"
"github.com/google/uuid"
"github.com/mendableai/firecrawl/go-sdk/firecrawl"
"github.com/mendableai/firecrawl/firecrawl"
)
func main() {

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
replace github.com/mendableai/firecrawl/go-sdk => ../
replace github.com/mendableai/firecrawl => ../
require (
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
)

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