8 lines
106 B
Text
8 lines
106 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
openapi-mock serve \
|
||
|
--specification-url petstore.yaml \
|
||
|
"$@"
|