Add remaining project files

This commit is contained in:
Marco Baldwin
2026-07-23 18:21:43 -07:00
parent c12d8ac35d
commit 6e15e89a9d
453 changed files with 64265 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using DeluxeBackend.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace DeluxeBackend.Controllers.Api
{
[Route("api/announcement")]
[ApiController]
public class AnnouncementController : ControllerBase
{
[HttpGet("v1/get")]
[Authorize(Roles = "gameClient")]
public async Task<IActionResult> None()
{
return Ok(new List<object>());
}
}
}