mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 22:51:24 -07:00
21 lines
477 B
C#
21 lines
477 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ir23.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class objectivesController : ControllerBase
|
|
{
|
|
[HttpGet("v1/myprogress")]
|
|
public IActionResult GetMyProgress()
|
|
{
|
|
return Ok(new
|
|
{
|
|
Objectives = new List<object>(),
|
|
ObjectiveGroups = new List<object>()
|
|
});
|
|
}
|
|
}
|
|
}
|