blob: 00bbc889d610e745012b6f18e9851e5b36a8477e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package alpsbase
import (
"git.sr.ht/~migadu/alps"
)
func init() {
p := alps.GoPlugin{Name: "base"}
p.TemplateFuncs(templateFuncs)
registerRoutes(&p)
alps.RegisterPluginLoader(p.Loader())
}
|