removed auth and fixed id bug

This commit is contained in:
2023-04-24 13:59:38 +02:00
parent b2fb4b33dd
commit 705a6cedb2
3 changed files with 4 additions and 27 deletions

View File

@@ -1,15 +0,0 @@
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()));
}
}