Create a web server that supports a nested route consisting of two levels (e.g., /api/ping, where /api is the first level and /ping is the second). The URI parameters should define the names of the levels.
The route handler must read the level names and respond with a string that contains the names of the routes separated by a dot. For example, if you request the route /user/get, it must respond with the string "user.get".
After creating the route, launch a web server that listens on the address 127.0.0.1:8080, serving the previously created route.