mirror of
https://github.com/kmein/niveum
synced 2026-03-17 10:41:06 +01:00
13 lines
243 B
Bash
13 lines
243 B
Bash
|
|
#!/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
|