module ClientApiBuilder
Purpose: to nest routers, which are sub sections of APIs for example if you had an entire section of your API dedicatd to user management. you may want to nest all calls to those routes under the user section ex: client.users.get_user(id: 1) # where users is a nested router
Purpose is to encapsulate adding nested routers