aboutsummaryrefslogblamecommitdiff
path: root/plugins/base/plugin.go
blob: 5a946f51f07b2c2533fcb8b3be2689a89875ad40 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                   
                                     






                                           
                                      
                          
 

                                          
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())
}