Added backend functions

This commit is contained in:
2025-03-04 13:56:38 +01:00
parent a98709b0a1
commit 3a118a9b34
22 changed files with 578 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace WorkTime.Api.Controllers;
[ApiController, Route("auth")]
public class AuthController : ControllerBase {
[HttpGet("register")]
public ActionResult<Guid> Register() {
return Ok(Guid.NewGuid().ToString());
}
}