papsign / Ktor-OpenAPI-Generator

Ktor OpenAPI/Swagger 3 Generator
Apache License 2.0
241 stars 42 forks source link

add primitive converter factory for kotlin.Byte #76

Closed y9san9 closed 3 years ago

y9san9 commented 3 years ago

image

Wicpar commented 3 years ago

Yes, bytes have not been added to the primitives. You can use an Int and @Min(-128) @Max(127)

Wicpar commented 3 years ago

added in latest commit

y9san9 commented 3 years ago

Thank you, good job!