123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package discordgo
- import (
- "net/http"
- "runtime"
- "time"
- )
- const VERSION = "0.23.0"
- func New(token string) (s *Session, err error) {
-
- s = &Session{
- State: NewState(),
- Ratelimiter: NewRatelimiter(),
- StateEnabled: true,
- Compress: true,
- ShouldReconnectOnError: true,
- ShardID: 0,
- ShardCount: 1,
- MaxRestRetries: 3,
- Client: &http.Client{Timeout: (20 * time.Second)},
- UserAgent: "DiscordBot (https://github.com/bwmarrin/discordgo, v" + VERSION + ")",
- sequence: new(int64),
- LastHeartbeatAck: time.Now().UTC(),
- }
-
-
- s.Identify.Compress = true
- s.Identify.LargeThreshold = 250
- s.Identify.GuildSubscriptions = true
- s.Identify.Properties.OS = runtime.GOOS
- s.Identify.Properties.Browser = "DiscordGo v" + VERSION
- s.Identify.Intents = IntentsAllWithoutPrivileged
- s.Identify.Token = token
- s.Token = token
- return
- }
|