Hi I have created one cloud function getUsers. Its can be accessed like https://xyz.cloudfunctions.net/getUsers
exports.getUsers = functions.https.onRequest((request, response) => {
});
I need to do some changes in the function and want to keep same function name. I want to add version in the cloud function so that it can be accessed like this
https://xyz.cloudfunctions.net/getUsers/v2
What is the way to do this in cloud function for Firebase ?