refactor: added more implementation details

This commit is contained in:
David Allen 2025-08-14 07:40:30 -06:00
parent 50e6b53091
commit a1a9c6407f
Signed by: towk
GPG key ID: 793B2924A49B3A3F
6 changed files with 86 additions and 4 deletions

19
pkg/plugins/jinja2.go Normal file
View file

@ -0,0 +1,19 @@
package plugin
type Jinja2 struct{}
func Name() string { return "jinja2" }
func Version() string { return "test" }
func Description() string { return "Renders Jinja 2 templates" }
func Metadata() map[string]string {
return map[string]string{
"author.name": "David J. Allen",
"author.email": "davidallendj@gmail.com",
}
}
func Init() {
// initialize Jinja2 (gonja)
}
func Run() {}
func Cleanup() {}

1
pkg/plugins/smd.go Normal file
View file

@ -0,0 +1 @@
package plugin