Files
WebShop_Fluxon/ShopAPI/ShopAPI/Controllers/AuthController.cs
2026-03-15 02:20:16 +01:00

21 lines
404 B
C#

using Microsoft.AspNetCore.Mvc;
using ShopAPI.DTOs;
using ShopAPI.Services;
namespace ShopAPI.Controllers
{
[ApiController]
[Route("api/[controller]")]
public class AuthController : ControllerBase
{
private readonly AuthService _authService;
public AuthController(AuthService authService)
{
_authService = authService;
}
}
}