aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/plugin.go
blob: 5a946f51f07b2c2533fcb8b3be2689a89875ad40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package koushinbase

import (
	"git.sr.ht/~emersion/koushin"
)

const messagesPerPage = 50

func init() {
	p := koushin.GoPlugin{Name: "base"}

	p.TemplateFuncs(templateFuncs)
	registerRoutes(&p)

	koushin.RegisterPlugin(p.Plugin())
}