using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace DeluxeBackend.Controllers.Api { [Route("api/objectives")] [ApiController] public class ObjectivesController : ControllerBase { [HttpGet("v1/myprogress")] public async Task MyProgress() { return Ok(new { Objectives = new List(), ObjectiveGroups= new List() }); } } }