Add initial docs

This commit is contained in:
Aslan 2025-12-22 21:55:07 -05:00
parent 3803d0cd09
commit 1b024e31bb
2 changed files with 70 additions and 0 deletions

15
docs/api/user.md Normal file
View file

@ -0,0 +1,15 @@
## GET /api/v1/user/{id}
Returns a user object with id = {id}
### Returns:
```json
{
"id": "string",
"username": "string",
"email": "string",
"description": "string",
"admin": false,
"registerDate": 0,
"lastLogin": 0
}
```