3
0
corteza/pkg/envoy/decoder.go
Tomaž Jerman 10b300328d Implement data shaping
Unstructured datasources (csv, jsonl, ...) are defined as resource
datasets.
These datasets are then "shaped" based on some template.

The result is an envoy resource like any other.
2020-11-27 11:19:16 +01:00

10 lines
141 B
Go

package envoy
type (
// DecoderOpts provides additional context for source decoders
DecoderOpts struct {
Name string
Path string
}
)