Skip to content

Commit 856f244

Browse files
committed
Added system controller to handle potential future API changes
1 parent e059513 commit 856f244

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using Microsoft.AspNetCore.Mvc;
2+
using OpenBioCardServer.Data;
3+
4+
namespace OpenBioCardServer.Controllers.Classic;
5+
6+
[Route("classic")]
7+
[ApiController]
8+
public class ClassicSystemController : ControllerBase
9+
{
10+
private readonly AppDbContext _context;
11+
private readonly ILogger<ClassicAuthController> _logger;
12+
13+
public ClassicSystemController(AppDbContext context,
14+
ILogger<ClassicAuthController> logger)
15+
{
16+
_context = context;
17+
_logger = logger;
18+
}
19+
}

0 commit comments

Comments
 (0)