mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
16 lines
No EOL
349 B
C#
16 lines
No EOL
349 B
C#
#nullable enable
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Controllers.Admin;
|
|
|
|
[ApiController]
|
|
[Route("/admin")]
|
|
public class AdminPanelController : ControllerBase
|
|
{
|
|
private readonly Database database;
|
|
|
|
public AdminPanelController(Database database)
|
|
{
|
|
this.database = database;
|
|
}
|
|
} |