Finish server routes.

This commit is contained in:
Paul
2021-07-11 18:45:09 +01:00
parent a0904b9909
commit a4cd54d579
12 changed files with 1514 additions and 6340 deletions
+17
View File
@@ -0,0 +1,17 @@
# Revolt API
### Tip
For faster compile times when working on API routes, comment out the categories you don't care about.
```ts
// 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();
```