Files
javascript-client-api/README.md
T
2021-07-11 18:45:09 +01:00

348 B

Revolt API

Tip

For faster compile times when working on API routes, comment out the categories you don't care about.

// src/routes/index.ts
export async function load() {
    // await import('./core.js');
    // await import('./users.js');
    // await import('./channels.js');
    await import('./servers.js');
}

await load();