Route
You can create new routes in app/routes
The ROUTE PATH is determined by the file structure within the routes directory of your application. For instance, if you have a file located at app/routes/test.ts
, this will correspond to the URL path DOMAIN/test
when accessed through a web browser. This mapping helps in organizing and accessing different parts of your application based on the URL structure.
Endpoints
Endpoints
You don't need a decorator, you can simply specify the exports as methods such as
Interacting with discord
Interacting with discord
You can access the client through the client
parameter.
Last updated