Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

v0.3.0: Updated Plugin API

Compare
Choose a tag to compare
@ojkelly ojkelly released this 20 Jul 12:10
· 53 commits to master since this release
v0.3.0

BREAKING CHANGE to the plugin api.
A parser function no returns all elements of a template.

func parser(
	name string,
	data string,
) (
	conditions kombustionTypes.TemplateObject,
	metadata kombustionTypes.TemplateObject,
	mappings kombustionTypes.TemplateObject,
	outputs kombustionTypes.TemplateObject,
	parameters kombustionTypes.TemplateObject,
	resources kombustionTypes.TemplateObject,
	transform kombustionTypes.TemplateObject,
	errors []error,
)