mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-06 18:52:27 +00:00
Split GameAPI and Website into their own projects
This commit is contained in:
parent
bb03a01246
commit
14154faaf8
116 changed files with 484 additions and 287 deletions
|
@ -0,0 +1,16 @@
|
|||
#nullable enable
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace LBPUnion.ProjectLighthouse.Website.Controllers.Admin;
|
||||
|
||||
[ApiController]
|
||||
[Route("/admin")]
|
||||
public class AdminPanelController : ControllerBase
|
||||
{
|
||||
private readonly Database database;
|
||||
|
||||
public AdminPanelController(Database database)
|
||||
{
|
||||
this.database = database;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue