aboutsummaryrefslogtreecommitdiff
path: root/modules/lists/lists.go
blob: f8f13bb9894c404afb677506b58bd09023f45b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package lists

import (
	"fagott.pw/charakterin"
	"fagott.pw/grilist/grilist"
)

type ListsModule struct {
	g *grilist.Grilist
}

func (d *ListsModule) Name() string {
	return "ListsModule"
}

func (d *ListsModule) Init(g *grilist.Grilist) {
	d.g = g
}

func (d *ListsModule) ProvideDashboardData(user *charakterin.User) grilist.DashboardCategory {
	return grilist.DashboardCategory{}
}

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