cannon
cannon copied to clipboard
Lightning fast data serialization and RPC for Crystal
Fixes https://github.com/Papierkorb/cannon/issues/4
I think if you want to make a time with seconds now you now need to do something like this: crystal ``` struct Time def self.from_cannon_io(io) utc(seconds: Cannon.decode(io, Int64), nanoseconds:...
Let's say I have a module that is included in a class: ```crystal module Paramable include Cannon::Auto abstract def parse end class JsonParams include Paramable end class FormEncodedParams include Paramable...