Is your feature request related to a problem? Please describe.
I'm always frustrated when people have to think about some structure serialization. APIs should use more specific types than just []byte because almost everything can be expressed as []byte while we expect some specific things here and there.
Is your feature request related to a problem? Please describe.
I'm always frustrated when people have to think about some structure serialization. APIs should use more specific types than just
[]byte
because almost everything can be expressed as[]byte
while we expect some specific things here and there.Describe the solution you'd like
Use
*keys.PublicKey
, useuser.ID
.