...

Source file src/go.formulabun.club/discord/context/context.go

Documentation: go.formulabun.club/discord/context

     1  package context
     2  
     3  import (
     4  	"github.com/bwmarrin/discordgo"
     5  	"go.formulabun.club/replays/store"
     6  )
     7  
     8  type DiscordContext struct {
     9  	S        *discordgo.Session
    10  	ReplayDB *store.Client
    11  	Cancel   chan struct{}
    12  }
    13  

View as plain text