* feat(orm): add ormvalue.Codec * WIP * WIP * working tests * update dep * support more types, add docs * comments * address review comments * updates * add comment
10 lines
190 B
Bash
Executable File
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 .)
|