As I work on creating a Todo website, I came across a video tutorial about building a Svelte fullstack app. The teacher in the video demonstrated the use of RequestHandler to create an endpoint.
However, in the SvelteKit documentation, it recommends using a normal function for tasks like body parsing.
So my question is, "Do I have to use RequestHandler or can I simply use a normal function?"