Skip to content

Commit ca92e7d

Browse files
Migrate module path to insights-by-omkar (org canonical)
Updates go.mod, README install/import paths, badges, and example imports to github.com/insights-by-omkar/kriya-go. The personal-account mirror at omkarjaliparthi/kriya-go is being retired as a shadow. Done while users == 0 per the audit recommendation. The org repo is the canonical home going forward.
1 parent 28ad242 commit ca92e7d

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Official Go client for [**Kriya**](https://kriya.insightsbyomkar.com) — the In
55
**Zero runtime dependencies.** Only `net/http` and `encoding/json` from the standard library.
66

77
<p align="center">
8-
<a href="https://github.com/omkarjaliparthi/kriya-go/actions/workflows/ci.yml"><img src="https://github.com/omkarjaliparthi/kriya-go/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
9-
<a href="https://pkg.go.dev/github.com/omkarjaliparthi/kriya-go"><img src="https://img.shields.io/badge/pkg.go.dev-docs-007d9c?style=flat-square" /></a>
8+
<a href="https://github.com/insights-by-omkar/kriya-go/actions/workflows/ci.yml"><img src="https://github.com/insights-by-omkar/kriya-go/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
9+
<a href="https://pkg.go.dev/github.com/insights-by-omkar/kriya-go"><img src="https://img.shields.io/badge/pkg.go.dev-docs-007d9c?style=flat-square" /></a>
1010
<a href="https://kriya.insightsbyomkar.com/docs/api"><img src="https://img.shields.io/badge/API_docs-Scalar-6E56CF?style=flat-square" /></a>
1111
<a href="https://kriya.insightsbyomkar.com/pricing"><img src="https://img.shields.io/badge/Pricing-tiered-success?style=flat-square" /></a>
1212
<img src="https://img.shields.io/badge/Go-1.21%2B-00ADD8?style=flat-square" />
@@ -19,7 +19,7 @@ Official Go client for [**Kriya**](https://kriya.insightsbyomkar.com) — the In
1919
## Install
2020

2121
```bash
22-
go get github.com/omkarjaliparthi/kriya-go@latest
22+
go get github.com/insights-by-omkar/kriya-go@latest
2323
```
2424

2525
Requires Go 1.21+. See [`SETUP.md`](./SETUP.md) for publishing internals.
@@ -36,7 +36,7 @@ import (
3636
"errors"
3737
"fmt"
3838

39-
"github.com/omkarjaliparthi/kriya-go"
39+
"github.com/insights-by-omkar/kriya-go"
4040
)
4141

4242
func main() {

SETUP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Go doesn't have a registry — publishing = pushing to a public Git repo with ve
77
1. **Create a GitHub repo** named e.g. `kriya-go` under your account or org.
88
2. **Edit `go.mod`** — replace the module path with your repo's URL:
99
```diff
10-
- module github.com/omkarjaliparthi/kriya-go
10+
- module github.com/insights-by-omkar/kriya-go
1111
+ module github.com/<your-org>/<your-repo-name>
1212
```
1313
3. **Edit `client.go`** package doc comment + import examples if you rename the package.
@@ -18,7 +18,7 @@ Go doesn't have a registry — publishing = pushing to a public Git repo with ve
1818
git add .
1919
git commit -m "Initial release"
2020
git branch -M main
21-
git remote add origin git@github.com:omkarjaliparthi/kriya-go.git
21+
git remote add origin git@github.com:insights-by-omkar/kriya-go.git
2222
git push -u origin main
2323
git tag v0.1.0
2424
git push --tags
@@ -37,5 +37,5 @@ Go modules pick up tags automatically; users get the new version with `go get
3737
## Consumers
3838

3939
```bash
40-
go get github.com/omkarjaliparthi/kriya-go@latest
40+
go get github.com/insights-by-omkar/kriya-go@latest
4141
```

examples/natal/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"time"
1313

14-
"github.com/omkarjaliparthi/kriya-go"
14+
"github.com/insights-by-omkar/kriya-go"
1515
)
1616

1717
func main() {

examples/positions/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"time"
1313

14-
"github.com/omkarjaliparthi/kriya-go"
14+
"github.com/insights-by-omkar/kriya-go"
1515
)
1616

1717
func main() {

examples/transits/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"time"
1313

14-
"github.com/omkarjaliparthi/kriya-go"
14+
"github.com/insights-by-omkar/kriya-go"
1515
)
1616

1717
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/omkarjaliparthi/kriya-go
1+
module github.com/insights-by-omkar/kriya-go
22

33
go 1.21

0 commit comments

Comments
 (0)