From fd060c7ef15602d02d21183da5fd67d58871eeb6 Mon Sep 17 00:00:00 2001 From: KentHsu Date: Tue, 13 Aug 2024 09:52:41 +0800 Subject: [PATCH] fix: go-sdk module name --- apps/go-sdk/README.md | 4 ++-- apps/go-sdk/examples/example.go | 2 +- apps/go-sdk/examples/go.mod | 6 +++--- apps/go-sdk/go.mod | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/go-sdk/README.md b/apps/go-sdk/README.md index 353d28d..7e17c10 100644 --- a/apps/go-sdk/README.md +++ b/apps/go-sdk/README.md @@ -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() { diff --git a/apps/go-sdk/examples/example.go b/apps/go-sdk/examples/example.go index 7519496..6097d22 100644 --- a/apps/go-sdk/examples/example.go +++ b/apps/go-sdk/examples/example.go @@ -6,7 +6,7 @@ import ( "log" "github.com/google/uuid" - "github.com/mendableai/firecrawl/go-sdk/firecrawl" + "github.com/mendableai/firecrawl/firecrawl" ) func main() { diff --git a/apps/go-sdk/examples/go.mod b/apps/go-sdk/examples/go.mod index e3c5335..8e47049 100644 --- a/apps/go-sdk/examples/go.mod +++ b/apps/go-sdk/examples/go.mod @@ -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 ) diff --git a/apps/go-sdk/go.mod b/apps/go-sdk/go.mod index d792e0f..c8a508d 100644 --- a/apps/go-sdk/go.mod +++ b/apps/go-sdk/go.mod @@ -1,4 +1,4 @@ -module github.com/mendableai/firecrawl/go-sdk +module github.com/mendableai/firecrawl/apps/go-sdk go 1.22.5