aboutsummaryrefslogtreecommitdiff
path: root/cmd/mimi/modules/discord/flyio/flyio.go
blob: 3541b8b1beef564ca40c125956794492fc36e886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package flyio

import (
	"github.com/bwmarrin/discordgo"
)

type Module struct {
	sess *discordgo.Session
}

func New() *Module {
	return &Module{}
}

func (m *Module) Register(s *discordgo.Session) {
	m.sess = s
}