mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-09 17:03:08 +00:00
26 lines
553 B
C#
26 lines
553 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace MarketInsights.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class MarketController : ControllerBase
|
|
{
|
|
private readonly AppState appState;
|
|
|
|
public MarketController(AppState appState)
|
|
{
|
|
this.appState = appState;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the most recent market overview.
|
|
/// </summary>
|
|
[HttpGet]
|
|
public MarketOverview Get()
|
|
{
|
|
return appState.MarketOverview;
|
|
}
|
|
}
|
|
}
|