Skip to content

Commit 6745af7

Browse files
committed
chore: migrate module from github.com/tejzpr to github.com/WebexCommunity
1 parent c8968aa commit 6745af7

40 files changed

Lines changed: 80 additions & 80 deletions

File tree

README.md

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

88
A comprehensive, lightweight Go SDK for Cisco Webex API
99

10-
[![Go Reference](https://pkg.go.dev/badge/github.com/tejzpr/webex-go-sdk.svg)](https://pkg.go.dev/github.com/tejzpr/webex-go-sdk)
10+
[![Go Reference](https://pkg.go.dev/badge/github.com/WebexCommunity/webex-go-sdk.svg)](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk)
1111
[![License: MPL 2.0](https://img.shields.io/badge/License-MPL_2.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
12-
[![Open Source](https://img.shields.io/badge/Open-Source-blue.svg)](https://github.com/tejzpr/webex-go-sdk)
13-
[![Go Tests](https://github.com/tejzpr/webex-go-sdk/actions/workflows/go-test.yml/badge.svg)](https://github.com/tejzpr/webex-go-sdk/actions/workflows/go-test.yml)
14-
[![Lint](https://github.com/tejzpr/webex-go-sdk/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/tejzpr/webex-go-sdk/actions/workflows/golangci-lint.yml)
12+
[![Open Source](https://img.shields.io/badge/Open-Source-blue.svg)](https://github.com/WebexCommunity/webex-go-sdk)
13+
[![Go Tests](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/go-test.yml/badge.svg)](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/go-test.yml)
14+
[![Lint](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/golangci-lint.yml)
1515
[![Codecov](https://codecov.io/gh/tejzpr/webex-go-sdk/branch/main/graph/badge.svg)](https://codecov.io/gh/tejzpr/webex-go-sdk)
16-
[![Release](https://img.shields.io/github/release/tejzpr/webex-go-sdk.svg)](https://github.com/tejzpr/webex-go-sdk/releases/latest)
17-
[![Go Report Card](https://goreportcard.com/badge/github.com/tejzpr/webex-go-sdk)](https://goreportcard.com/report/github.com/tejzpr/webex-go-sdk)
16+
[![Release](https://img.shields.io/github/release/tejzpr/webex-go-sdk.svg)](https://github.com/WebexCommunity/webex-go-sdk/releases/latest)
17+
[![Go Report Card](https://goreportcard.com/badge/github.com/WebexCommunity/webex-go-sdk)](https://goreportcard.com/report/github.com/WebexCommunity/webex-go-sdk)
1818

1919
## Implementation Status
2020

@@ -25,7 +25,7 @@ A comprehensive, lightweight Go SDK for Cisco Webex API
2525
## Installation
2626

2727
```bash
28-
go get github.com/tejzpr/webex-go-sdk
28+
go get github.com/WebexCommunity/webex-go-sdk
2929
```
3030

3131
## Quick Start
@@ -38,7 +38,7 @@ import (
3838
"log"
3939
"os"
4040

41-
"github.com/tejzpr/webex-go-sdk/v1"
41+
"github.com/WebexCommunity/webex-go-sdk/v1"
4242
)
4343

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

106106
For detailed documentation, examples, and API reference, see:
107107

108-
- [Go Reference Documentation](https://pkg.go.dev/github.com/tejzpr/webex-go-sdk)
108+
- [Go Reference Documentation](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk)
109109
- [Examples Directory](./examples)
110110
- [Cisco Webex API Documentation](https://developer.webex.com/docs/api/getting-started)
111111

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/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/v1/webexsdk"
14+
"github.com/WebexCommunity/webex-go-sdk/v1/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/v1/webexsdk"
17+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
1818
)
1919

2020
func TestCreate(t *testing.T) {

conversation/conversation.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"fmt"
1212
"sync"
1313

14-
"github.com/tejzpr/webex-go-sdk/v1/encryption"
15-
"github.com/tejzpr/webex-go-sdk/v1/mercury"
16-
"github.com/tejzpr/webex-go-sdk/v1/webexsdk"
14+
"github.com/WebexCommunity/webex-go-sdk/v1/encryption"
15+
"github.com/WebexCommunity/webex-go-sdk/v1/mercury"
16+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
1717
)
1818

1919
// ActivityHandler is a function that handles conversation activities

device/device.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"sync"
1616
"time"
1717

18-
"github.com/tejzpr/webex-go-sdk/v1/webexsdk"
18+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
1919
)
2020

2121
// DeviceResponse represents the response from the device registration

encryption/encryption.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"sync"
1919
"time"
2020

21-
"github.com/tejzpr/webex-go-sdk/v1/webexsdk"
21+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
2222
)
2323

2424
const (

events/events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"net/url"
1414
"time"
1515

16-
"github.com/tejzpr/webex-go-sdk/v1/webexsdk"
16+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
1717
)
1818

1919
// Event represents a Webex event

events/events_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"testing"
1313
"time"
1414

15-
"github.com/tejzpr/webex-go-sdk/v1/webexsdk"
15+
"github.com/WebexCommunity/webex-go-sdk/v1/webexsdk"
1616
)
1717

1818
func TestList(t *testing.T) {

examples/attachmentactions/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"log"
1212
"os"
1313

14-
"github.com/tejzpr/webex-go-sdk/v1"
15-
"github.com/tejzpr/webex-go-sdk/v1/attachmentactions"
16-
"github.com/tejzpr/webex-go-sdk/v1/messages"
14+
"github.com/WebexCommunity/webex-go-sdk/v1"
15+
"github.com/WebexCommunity/webex-go-sdk/v1/attachmentactions"
16+
"github.com/WebexCommunity/webex-go-sdk/v1/messages"
1717
)
1818

1919
func main() {

0 commit comments

Comments
 (0)