sudoblockio / tackle

Tackle is a programmable configuration language for building modular utilities, code generators, and CLIs with schema validation baked in.
Apache License 2.0
52 stars 2 forks source link

Custom serializers for special types #191

Open robcxyz opened 11 months ago

robcxyz commented 11 months ago

Right now we are just serializing every special type to string which is not ok for certain types. For instance there might be some special integer type which should not be stringified. In order to fix this, we should be creating a custom set of types with their associated serializer and then document those types better.