lander/landerctl
Jef Roosens 9c3af74e1b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add very simple add-only persistence model
2022-11-15 22:49:36 +01:00

13 lines
205 B
Bash
Executable file

#!/usr/bin/env sh
API_KEY=test
URL=http://localhost:18080
if [ "$1" = add ]; then
curl \
-XPOST \
-d "$3" \
-H "X-Api-Key: $API_KEY" \
"$URL/$2"
echo "$URL/$2"
fi