MireaBackend/Endpoint/Controllers/BaseController.cs
Polianin Nikita ae0b9daefa
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m59s
refactor: change the api path
2024-05-28 07:09:40 +03:00

8 lines
221 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Mirea.Api.Endpoint.Controllers;
[Produces("application/json")]
[Route("api/v{version:apiVersion}/[controller]")]
[ApiController]
public class BaseController : ControllerBase;