blob: 5a946f51f07b2c2533fcb8b3be2689a89875ad40 (
plain) (
tree)
|
|
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())
}
|