From c907b6207e7e8f96e83b954b1d72e4a71b8a21b1 Mon Sep 17 00:00:00 2001 From: sukujgrg Date: Wed, 29 Jul 2026 06:22:15 +1000 Subject: [PATCH] rename lib parent path --- README.md | 8 ++++---- example/go.mod | 6 +++--- example/open/main.go | 2 +- go.mod | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1506be9..8ce364c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ package main import ( "fmt" - "github.com/sukujgrg/browser" + "github.com/credbind/browser" ) func launchLogin() error { @@ -28,7 +28,7 @@ func launchLogin() error { Install it with: ```sh -go get github.com/sukujgrg/browser +go get github.com/credbind/browser ``` ## Try it @@ -74,7 +74,7 @@ Use the browser's Windows executable through its `/mnt/c` path: ```sh BROWSER='/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe' \ - go run ./example/open https://github.com/sukujgrg/browser + go run ./example/open https://github.com/credbind/browser ``` ### Windows PowerShell @@ -83,7 +83,7 @@ Set `BROWSER` in the PowerShell environment before running the example: ```powershell $env:BROWSER = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" -go run .\example\open https://github.com/sukujgrg/browser +go run .\example\open https://github.com/credbind/browser ``` The value is treated as one executable path, not as a shell command. The URL is diff --git a/example/go.mod b/example/go.mod index ec1b6d7..792e4c9 100644 --- a/example/go.mod +++ b/example/go.mod @@ -1,7 +1,7 @@ -module github.com/sukujgrg/browser/example +module github.com/credbind/browser/example go 1.22 -require github.com/sukujgrg/browser v0.0.0 +require github.com/credbind/browser v0.0.0 -replace github.com/sukujgrg/browser => ../ +replace github.com/credbind/browser => ../ diff --git a/example/open/main.go b/example/open/main.go index 74c0bc9..ecd6122 100644 --- a/example/open/main.go +++ b/example/open/main.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "github.com/sukujgrg/browser" + "github.com/credbind/browser" ) func main() { diff --git a/go.mod b/go.mod index 844ffa4..b80e51e 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/sukujgrg/browser +module github.com/credbind/browser go 1.22