Skip to content

Commit 5d521e3

Browse files
authored
chore: migrate module from github.com/tejzpr to github.com/WebexCommunity (#17)
1 parent 3cff7a9 commit 5d521e3

81 files changed

Lines changed: 182 additions & 170 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
A comprehensive, lightweight Go SDK for Cisco Webex API
66

7-
[Go Reference](https://pkg.go.dev/github.com/tejzpr/webex-go-sdk/v2)
7+
[Go Reference](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk/v2)
88
[License: MPL 2.0](https://opensource.org/licenses/MPL-2.0)
9-
[Open Source](https://github.com/tejzpr/webex-go-sdk)
10-
[Go Tests](https://github.com/tejzpr/webex-go-sdk/actions/workflows/go-test.yml)
11-
[Lint](https://github.com/tejzpr/webex-go-sdk/actions/workflows/golangci-lint.yml)
9+
[Open Source](https://github.com/WebexCommunity/webex-go-sdk)
10+
[Go Tests](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/go-test.yml)
11+
[Lint](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/golangci-lint.yml)
1212
[Codecov](https://codecov.io/gh/tejzpr/webex-go-sdk)
13-
[Release](https://github.com/tejzpr/webex-go-sdk/releases/latest)
14-
[Go Report Card](https://goreportcard.com/report/github.com/tejzpr/webex-go-sdk/v2)
13+
[Release](https://github.com/WebexCommunity/webex-go-sdk/releases/latest)
14+
[Go Report Card](https://goreportcard.com/report/github.com/WebexCommunity/webex-go-sdk/v2)
1515

1616
## Implementation Status
1717

@@ -22,7 +22,7 @@ A comprehensive, lightweight Go SDK for Cisco Webex API
2222
## Installation
2323

2424
```bash
25-
go get github.com/tejzpr/webex-go-sdk/v2
25+
go get github.com/WebexCommunity/webex-go-sdk/v2
2626
```
2727

2828
## Quick Start
@@ -35,7 +35,7 @@ import (
3535
"log"
3636
"os"
3737

38-
"github.com/tejzpr/webex-go-sdk/v2"
38+
"github.com/WebexCommunity/webex-go-sdk/v2"
3939
)
4040

4141
func main() {
@@ -118,7 +118,7 @@ fmt.Printf("Message sent: ID=%s\n", createdMessage.ID)
118118

119119
For detailed documentation, examples, and API reference, see:
120120

121-
- [Go Reference Documentation](https://pkg.go.dev/github.com/tejzpr/webex-go-sdk/v2)
121+
- [Go Reference Documentation](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk/v2)
122122
- [Examples Directory](./examples)
123123
- [Cisco Webex API Documentation](https://developer.webex.com/docs/api/getting-started)
124124

Reuse.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "webex-go-sdk"
33
description = "A Go SDK for the Cisco Webex APIs"
44
authors = ["Tejus Pratap <tejzpr@gmail.com>"]
5-
repository = "https://github.com/tejzpr/webex-go-sdk"
5+
repository = "https://github.com/WebexCommunity/webex-go-sdk"
66

77
[default]
88
copyright = "2025 Tejus Pratap"

attachmentactions/Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This module is part of the Webex Go SDK. To use it, import the SDK and the attac
1515

1616
```go
1717
import (
18-
"github.com/tejzpr/webex-go-sdk/v2"
19-
"github.com/tejzpr/webex-go-sdk/v2/attachmentactions"
18+
"github.com/WebexCommunity/webex-go-sdk/v2"
19+
"github.com/WebexCommunity/webex-go-sdk/v2/attachmentactions"
2020
)
2121
```
2222

@@ -102,9 +102,9 @@ import (
102102
"log"
103103
"os"
104104

105-
"github.com/tejzpr/webex-go-sdk/v2"
106-
"github.com/tejzpr/webex-go-sdk/v2/attachmentactions"
107-
"github.com/tejzpr/webex-go-sdk/v2/messages"
105+
"github.com/WebexCommunity/webex-go-sdk/v2"
106+
"github.com/WebexCommunity/webex-go-sdk/v2/attachmentactions"
107+
"github.com/WebexCommunity/webex-go-sdk/v2/messages"
108108
)
109109

110110
func main() {

attachmentactions/attachmentactions.go

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

14-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
14+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
1515
)
1616

1717
// AttachmentAction represents a Webex attachment action

attachmentactions/attachmentactions_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
17+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
1818
)
1919

2020
func TestCreate(t *testing.T) {

calling/Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This module is part of the Webex Go SDK. To use it, import the SDK and the calli
1818

1919
```go
2020
import (
21-
webex "github.com/tejzpr/webex-go-sdk/v2"
22-
"github.com/tejzpr/webex-go-sdk/v2/calling"
21+
webex "github.com/WebexCommunity/webex-go-sdk/v2"
22+
"github.com/WebexCommunity/webex-go-sdk/v2/calling"
2323
)
2424
```
2525

@@ -410,8 +410,8 @@ import (
410410

411411
"github.com/gorilla/websocket"
412412

413-
webex "github.com/tejzpr/webex-go-sdk/v2"
414-
"github.com/tejzpr/webex-go-sdk/v2/calling"
413+
webex "github.com/WebexCommunity/webex-go-sdk/v2"
414+
"github.com/WebexCommunity/webex-go-sdk/v2/calling"
415415
)
416416

417417
func main() {

calling/call.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
"github.com/google/uuid"
1919
"github.com/pion/webrtc/v4"
20-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
20+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
2121
)
2222

2323
// Call represents an active or pending call with full call control.

calling/callcontrol_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515

1616
"github.com/pion/webrtc/v4"
17-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
17+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
1818
)
1919

2020
// ---- EventEmitter Tests ----

calling/callhistory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"net/http"
1515
"strconv"
1616

17-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
17+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
1818
)
1919

2020
// CallHistoryClient provides methods for retrieving and managing call history records.

calling/calling.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
package calling
1010

1111
import (
12-
"github.com/tejzpr/webex-go-sdk/v2/webexsdk"
12+
"github.com/WebexCommunity/webex-go-sdk/v2/webexsdk"
1313
)
1414

1515
// Client is the top-level Calling client that aggregates all calling sub-clients.

0 commit comments

Comments
 (0)