GET /
- returns a 200 status codeGET /add/{a}/{b}
- parses a and b as integers and returnsa + b
in the bodyGET /mult/{a}/{b}
- parses a and b as integers and returnsa * b
in the bodyGET /cowsay/{message}
- returns the output ofcowsay {message}
in the bodyGET /uuid
- returns a random UUID in the body