mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-04 00:00:44 +08:00
Merge pull request #534 from KentHsu/fix/go-sdk-module-name
fix: go-sdk module name
This commit is contained in:
commit
dd387c53c3
@ -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() {
|
||||||
|
@ -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() {
|
||||||
|
@ -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,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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user