apigear-io / cli

The ApiGear client as go project
https://apigear.io
MIT License
1 stars 2 forks source link

add bytes data type #143

Open jryannel opened 4 months ago

jryannel commented 4 months ago

A bytes data type can be used to transport files but also JSON messages. The bytes is an array of int8.

Why bytes and not []int8? Some languages don't support int8 so the conversion would be to []int which instead should be maybe string.