Just small proxy that allow user control printer via REST API without necessary access to digest - for example when using Grafana
curl --location 'http://localhost:31100/pause' \
--header 'Content-Type: text/plain' \
--data '{
"ip": "<IP address of printer>"
}'
curl --location 'http://localhost:31100/resume' \
--header 'Content-Type: text/plain' \
--data '{
"ip": "<IP address of printer>"
}'
curl --location 'http://localhost:31100/stop' \
--header 'Content-Type: text/plain' \
--data '{
"ip": "<IP address of printer>"
}'