4d68400036
Add a settings page where the user can change the number of messages displayed per page.
14 lines
213 B
Go
14 lines
213 B
Go
package koushinbase
|
|
|
|
import (
|
|
"git.sr.ht/~emersion/koushin"
|
|
)
|
|
|
|
func init() {
|
|
p := koushin.GoPlugin{Name: "base"}
|
|
|
|
p.TemplateFuncs(templateFuncs)
|
|
registerRoutes(&p)
|
|
|
|
koushin.RegisterPluginLoader(p.Loader())
|
|
}
|