mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-04 18:02:28 +00:00
16 lines
No EOL
341 B
C#
16 lines
No EOL
341 B
C#
#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;
|
|
}
|
|
} |