cs-codex-dist-tests/Tools/MarketInsights/Controllers/MarketController.cs

19 lines
395 B
C#
Raw Normal View History

2024-08-21 09:34:54 +00:00
using Microsoft.AspNetCore.Mvc;
namespace MarketInsights.Controllers
{
[ApiController]
[Route("[controller]")]
public class MarketController : ControllerBase
{
/// <summary>
/// Gets the most recent market overview.
/// </summary>
[HttpGet]
public MarketOverview Get()
{
return new MarketOverview();
}
}
}