(m)auth
This commit is contained in:
15
Controllers/AuthController.cs
Normal file
15
Controllers/AuthController.cs
Normal 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()));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user