mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-02-04 13:23:08 +00:00
19 lines
395 B
C#
19 lines
395 B
C#
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();
|
|
}
|
|
}
|
|
}
|