curl "localhost:8080/health"- Returns:
- String: "You're good to...GO! :D"
curl -F 'file=@matrix.csv' "localhost:8080/echo"- Returns []string:
-
1,2,3 4,5,6 7,8,9
-
curl -F 'file=@matrix.csv' "localhost:8080/invert"- Returns []string:
-
1,4,7 2,5,8 3,6,9
-
curl -F 'file=@matrix.csv' "localhost:8080/flatten"- Returns string:
1,2,3,4,5,6,7,8,9
curl -F 'file=@matrix.csv' "localhost:8080/sum"- Returns string:
45
curl -F 'file=@matrix.csv' "localhost:8080/multiply"- Returns string:
362880