tinylib / msgp

A Go code generator for MessagePack / msgpack.org[Go]
MIT License
1.77k stars 189 forks source link

How to using UUID ? (GitHub.com/google/uuid) #342

Closed it512 closed 4 months ago

klauspost commented 4 months ago

Make a local type:

type UUID [16]byte

type Data struct {
    UUID                        UUID
}

You can also go all in and add an extension.

Provide more context for a better answer.