You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
Slack API in Go [](https://pkg.go.dev/github.com/slack-go/slack)[](https://github.com/slack-go/slack/actions/workflows/test.yml)
1
+
Slack API in Go [](https://pkg.go.dev/github.com/akfaew/slack)[](https://github.com/akfaew/slack/actions/workflows/test.yml)
2
2
===============
3
3
4
4
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.
15
15
There is currently no major version released.
16
16
Therefore, minor version releases may include backward incompatible changes.
17
17
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.
19
19
20
20
## Installing
21
21
22
22
### *go get*
23
23
24
-
$ go get -u github.com/slack-go/slack
24
+
$ go get -u github.com/akfaew/slack
25
25
26
26
## Example
27
27
@@ -31,7 +31,7 @@ See [Releases](https://github.com/slack-go/slack/releases) for more information
31
31
import (
32
32
"fmt"
33
33
34
-
"github.com/slack-go/slack"
34
+
"github.com/akfaew/slack"
35
35
)
36
36
37
37
funcmain() {
@@ -56,7 +56,7 @@ func main() {
56
56
import (
57
57
"fmt"
58
58
59
-
"github.com/slack-go/slack"
59
+
"github.com/akfaew/slack"
60
60
)
61
61
62
62
funcmain() {
@@ -72,19 +72,19 @@ func main() {
72
72
73
73
## Minimal Socket Mode usage:
74
74
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
76
76
77
77
78
78
## Minimal RTM usage:
79
79
80
80
As mentioned in https://api.slack.com/rtm - for most applications, Socket Mode is a better way to communicate with Slack.
81
81
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
83
83
84
84
85
85
## Minimal EventsAPI usage:
86
86
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
0 commit comments