9 lines
121 B
Bash
Executable File
9 lines
121 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# this script generates the new API go module using pulsar
|
|
|
|
set -eo pipefail
|
|
|
|
cd api
|
|
buf generate .
|