this repo has no description
1package main 2 3import ( 4 shbild "github.com/icyphox/bild/api/bild" 5 cbg "github.com/whyrusleeping/cbor-gen" 6) 7 8func main() { 9 10 genCfg := cbg.Gen{ 11 MaxStringLength: 1_000_000, 12 } 13 14 if err := genCfg.WriteMapEncodersToFile( 15 "api/bild/cbor_gen.go", 16 "bild", 17 shbild.PublicKey{}, 18 ); err != nil { 19 panic(err) 20 } 21 22}