new folder structure

This commit is contained in:
MrMatiz2 2025-07-22 08:19:06 -05:00
commit 5831230d13
14 changed files with 262 additions and 96 deletions

View file

@ -0,0 +1,16 @@
{
"name": "generateToken",
"method": "POST",
"endpoint": "/login/generateToken",
"description": "Generate authentication token using credentials.",
"parameters": [],
"requiresAuth": false,
"response": {
"type": "object",
"properties": {
"token": "string",
"token_type": "string",
"expires_in": "number"
}
}
}