Routes
HTTP endpoints currently exposed by the raw TCP server.
get /
Returns project metadata, owner details, and supported routes.
01
curl http://127.0.0.1:8080/get /health
Simple health probe for uptime and smoke tests.
01
curl http://127.0.0.1:8080/healthget /about
Owner profile and contact links.
01
curl http://127.0.0.1:8080/aboutpost /echo
Echoes request bodies back to the caller for quick transport checks.
01
curl -X POST http://127.0.0.1:8080/echo -H "Content-Type: text/plain" -d "hello from nishant"