Create web server that supports the /user group route with two child routes (/about and /update). Each request to the /user group must be authorized using the route parameter :auth, defined at the third level of the route (e.g., /user/about/secretToken, where secretToken is an :auth route parameter).
If the parameter is equal to the string "secret_token", the user is authorized. Upon successful authorization, the route name should be returned in the response (e.g., if the request is made to http://127.0.0.1:8082/user/about/secret_token, the server should respond with the string "about"). If the authorization fails, respond with the string "not found".
Once the routes and endpoints are defined, start a web server that listens on the address 127.0.0.1:8082.