Can I add more than one function in the src/main.js
file of an Appwrite cloud function?
What if the different functions depend on two separate events, specifically: user.*.create
and bucket.*.files.*.create
, would it still work?
TL;DR
Developers are inquiring about adding multiple functions in one `src/main.js` file of an Appwrite cloud function that depends on different events such as `user.*.create` and `bucket.*.files.*.create`. It is possible to have multiple functions in a single file, and they can handle different events effectively.