Skip to content

Commit d775338

Browse files
committed
Rename import paths so this works
1 parent 36232f2 commit d775338

Some content is hidden

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

62 files changed

+105
-105
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Slack API in Go [![Go Reference](https://pkg.go.dev/badge/github.com/slack-go/slack.svg)](https://pkg.go.dev/github.com/slack-go/slack) [![CI](https://github.com/slack-go/slack/actions/workflows/test.yml/badge.svg)](https://github.com/slack-go/slack/actions/workflows/test.yml)
1+
Slack API in Go [![Go Reference](https://pkg.go.dev/badge/github.com/akfaew/slack.svg)](https://pkg.go.dev/github.com/akfaew/slack) [![CI](https://github.com/akfaew/slack/actions/workflows/test.yml/badge.svg)](https://github.com/akfaew/slack/actions/workflows/test.yml)
22
===============
33

44
This is the original Slack library for Go created by Norberto Lopes, transferred to a GitHub organization.
@@ -15,13 +15,13 @@ a fully managed way.
1515
There is currently no major version released.
1616
Therefore, minor version releases may include backward incompatible changes.
1717

18-
See [Releases](https://github.com/slack-go/slack/releases) for more information about the changes.
18+
See [Releases](https://github.com/akfaew/slack/releases) for more information about the changes.
1919

2020
## Installing
2121

2222
### *go get*
2323

24-
$ go get -u github.com/slack-go/slack
24+
$ go get -u github.com/akfaew/slack
2525

2626
## Example
2727

@@ -31,7 +31,7 @@ See [Releases](https://github.com/slack-go/slack/releases) for more information
3131
import (
3232
"fmt"
3333

34-
"github.com/slack-go/slack"
34+
"github.com/akfaew/slack"
3535
)
3636

3737
func main() {
@@ -56,7 +56,7 @@ func main() {
5656
import (
5757
"fmt"
5858

59-
"github.com/slack-go/slack"
59+
"github.com/akfaew/slack"
6060
)
6161

6262
func main() {
@@ -72,19 +72,19 @@ func main() {
7272

7373
## Minimal Socket Mode usage:
7474

75-
See https://github.com/slack-go/slack/blob/master/examples/socketmode/socketmode.go
75+
See https://github.com/akfaew/slack/blob/master/examples/socketmode/socketmode.go
7676

7777

7878
## Minimal RTM usage:
7979

8080
As mentioned in https://api.slack.com/rtm - for most applications, Socket Mode is a better way to communicate with Slack.
8181

82-
See https://github.com/slack-go/slack/blob/master/examples/websocket/websocket.go
82+
See https://github.com/akfaew/slack/blob/master/examples/websocket/websocket.go
8383

8484

8585
## Minimal EventsAPI usage:
8686

87-
See https://github.com/slack-go/slack/blob/master/examples/eventsapi/events.go
87+
See https://github.com/akfaew/slack/blob/master/examples/eventsapi/events.go
8888

8989
## Socketmode Event Handler (Experimental)
9090

chat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"regexp"
1111
"strconv"
1212

13-
"github.com/slack-go/slack/slackutilsx"
13+
"github.com/akfaew/slack/slackutilsx"
1414
)
1515

1616
const (

errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package slack
22

3-
import "github.com/slack-go/slack/internal/errorsx"
3+
import "github.com/akfaew/slack/internal/errorsx"
44

55
// Errors returned by various methods.
66
const (

examples/blocks/blocks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/slack-go/slack"
7+
"github.com/akfaew/slack"
88
)
99

1010
// The functions below mock the different templates slack has as examples on their website.

examples/buttons/buttons.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http"
88
"os"
99

10-
"github.com/slack-go/slack"
10+
"github.com/akfaew/slack"
1111
)
1212

1313
func main() {

examples/connparams/connparams.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"strings"
1010

11-
"github.com/slack-go/slack"
11+
"github.com/akfaew/slack"
1212
)
1313

1414
func main() {

examples/conversation_history/conversation_history.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/slack-go/slack"
9+
"github.com/akfaew/slack"
1010
)
1111

1212
func main() {

examples/conversations/conversations.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/slack-go/slack"
7+
"github.com/akfaew/slack"
88
)
99

1010
func main() {

examples/conversations_invite/conversations_invite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/slack-go/slack"
9+
"github.com/akfaew/slack"
1010
)
1111

1212
func main() {

examples/dialog/dialog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"os"
1010
"strings"
1111

12-
"github.com/slack-go/slack"
12+
"github.com/akfaew/slack"
1313
)
1414

1515
var api *slack.Client

0 commit comments

Comments
 (0)