aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/plugin.go
blob: 16eaf1d210d45b53b47382b16fb2354beece6b55 (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.RegisterPluginLoader(p.Loader())
}