Routing in SST app

I have the SST app made but later down the road i have realised that i might be ending up with a lot of lambdas so i was wondering whats a good way or practice to group up similar lambdas.
all of this in a gracefull way.
then i found power tool it looked like something thats going to help with this but i am not sure how to implement it.

so either let me know if theres any existing solution or example that solved my problem or please guide me how can i implement this lambda power tool.
a really short and abstracted example might do the trick.

once again to Avoid ending up with so many lambdas is there any way i can handle similar routes like:

  • /user/ POST
  • /user/ GET
  • /user/ DELETE
  • /user/activate POST
  • /user/{id} GET

Appreciate any help !!!