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