mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-27 19:19:24 +00:00
Update vendor
This commit is contained in:
25
vendor/github.com/nlopes/slack/examples/team/team.go
generated
vendored
Normal file
25
vendor/github.com/nlopes/slack/examples/team/team.go
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nlopes/slack"
|
||||
)
|
||||
|
||||
func main() {
|
||||
api := slack.New("YOUR_TOKEN_HERE")
|
||||
//Example for single user
|
||||
billingActive, err := api.GetBillableInfo("U023BECGF")
|
||||
if err != nil {
|
||||
fmt.Printf("%s\n", err)
|
||||
return
|
||||
}
|
||||
fmt.Printf("ID: U023BECGF, BillingActive: %v\n\n\n", billingActive["U023BECGF"])
|
||||
|
||||
//Example for team
|
||||
billingActiveForTeam, err := api.GetBillableInfoForTeam()
|
||||
for id, value := range billingActiveForTeam {
|
||||
fmt.Printf("ID: %v, BillingActive: %v\n", id, value)
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user