kubewarden / policy-sdk-go

Kubewarden Policy SDK for the Go programming language
https://kubewarden.io
Apache License 2.0
8 stars 7 forks source link

Port the helper functions to use `encoding/json` #14

Open flavio opened 3 years ago

flavio commented 3 years ago

Currently all our helper functions build JSON objects the manual way. That was caused by TinyGo not supporting encoding/json.

This changed with the latest release of TinyGo, hence we should:

By doing that we will also be able to fix https://github.com/kubewarden/policy-sdk-go/issues/7.

Acceptance criteria