mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
endpoint=prism.r:8001
|
|
|
|
case "$1" in
|
|
good|like|cool|nice|yes|+)
|
|
curl -sS -XPOST "$endpoint/good";;
|
|
skip|next|bad|sucks|no|nope|-)
|
|
curl -sS -XPOST "$endpoint/skip";;
|
|
*)
|
|
curl -sS -XGET "$endpoint/current" | jq;;
|
|
esac
|