This commit is contained in:
2023-04-07 12:22:43 +02:00
parent 78af43ad44
commit edb4d24f41
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System.Text.Json;
using Microsoft.AspNetCore.Mvc;
namespace MauMau_Server.Controllers;
[ApiController]
[Route("[controller]")]
public class AuthController : ControllerBase
{
[HttpGet]
public async Task<IActionResult> Get()
{
return Ok(JsonSerializer.Serialize(Guid.NewGuid()));
}
}