6 lines
179 B
Bash
Executable File
6 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
curl -sS -X POST http://127.0.0.1:8000/analyze \
|
|
-H "Content-Type: application/json" \
|
|
-d @tests/sample_cases/sample_analyze.json | jq .
|