Implement a web server that includes a calculator using router parameters. The calculator should support four actions: /add (addition), /sub (subtraction), /mult (multiplication), and /div (division).
Following the action name, define two numbers that the action should be applied to. For example, if the request is made to the route /add/2/2, the server should respond with the number 4. Note that all arithmetic operations should be performed with numbers of type int.
After defining the routes and endpoints, launch a web server that listens on the address 127.0.0.1:8080.
Tip: You can define a route with its own handler for each arithmetic operation. For example, router.GET("/add", ...). Alternatively, you can define the arithmetic operation as a URI parameter (:action, for example), and determine the action name using an if-else or switch-case construction.