cosmos-sdk/scripts/protocgen2.sh
Aaron Craelius 6662f2ff30
feat(orm): add ormfield.Codec (#10601)
* feat(orm): add ormvalue.Codec

* WIP

* WIP

* working tests

* update dep

* support more types, add docs

* comments

* address review comments

* updates

* add comment
2021-11-24 13:10:26 -05:00

10 lines
190 B
Bash
Executable File

#!/usr/bin/env bash
# this script is for generating protobuf files for the new google.golang.org/protobuf API
set -eo pipefail
(cd api; buf generate .)
(cd orm/internal; buf generate .)